| CODENOTIFIER | HelpYou are not signed inSign in |
Project: Theora
Revision: 15266
Author: ivo
Date: 07 Sep 2008 20:43:57
Changes:Split encoder and decoder tests depending on configure settings. Patch by aballier from Gentoo. Closes #1423
Files:| ... | ...@@ -13,12 +13,19 @@ | |
| 13 | 13 | |
| 14 | 14 | TESTS_ENVIRONMENT = $(VALGRIND_ENVIRONMENT) |
| 15 | 15 | |
| 16 | TESTS = noop noop_theoraenc noop_theora \ | |
| 17 | comment comment_theoradec comment_theora \ | |
| 16 | TESTS_DEC = noop_theora \ | |
| 17 | comment comment_theoradec comment_theora | |
| 18 | ||
| 19 | TESTS_ENC = noop noop_theoraenc \ | |
| 18 | 20 | granulepos granulepos_theoraenc granulepos_theora |
| 19 | 21 | |
| 20 | noinst_PROGRAMS = $(TESTS) | |
| 22 | if THEORA_DISABLE_ENCODE | |
| 23 | TESTS = $(TESTS_DEC) | |
| 24 | else | |
| 25 | TESTS = $(TESTS_DEC) $(TESTS_ENC) | |
| 26 | endif | |
| 21 | 27 | |
| 28 | check_PROGRAMS = $(TESTS) | |
| 22 | 29 | # dummy call tests for the current api |
| 23 | 30 | noop_SOURCES = noop.c |
| 24 | 31 | noop_LDADD = $(THEORAENC_LIBS) |