summaryrefslogtreecommitdiff
path: root/tests/Makefile
diff options
context:
space:
mode:
authorMans Rullgard <mans@mansr.com>2011-07-17 11:55:08 +0100
committerMans Rullgard <mans@mansr.com>2011-09-27 00:05:51 +0100
commit908f12f342341785bf0458e88a06d97a1af90339 (patch)
tree50071ea0f1d4937d00550c13119e2f98332bcd45 /tests/Makefile
parent96a59cf37b080080b7e45dd57828b40a7a2bbfe7 (diff)
fate: allow testing with libavfilter disabled
This declares dependencies to skip tests using libavfilter when it is disabled. Signed-off-by: Mans Rullgard <mans@mansr.com>
Diffstat (limited to 'tests/Makefile')
-rw-r--r--tests/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile
index b511a9a118..c0afffddb3 100644
--- a/tests/Makefile
+++ b/tests/Makefile
@@ -45,9 +45,12 @@ FATE_SEEK = $(SEEK_TESTS:seek_%=fate-seek-%)
FATE = $(FATE_ACODEC) \
$(FATE_VCODEC) \
$(FATE_LAVF) \
- $(FATE_LAVFI) \
$(FATE_SEEK) \
+FATE-$(CONFIG_AVFILTER) += $(FATE_LAVFI)
+
+FATE += $(FATE-yes)
+
$(filter-out %-aref,$(FATE_ACODEC)): $(AREF)
$(filter-out %-vref,$(FATE_VSYNTH1)): fate-vsynth1-vref
$(filter-out %-vref,$(FATE_VSYNTH2)): fate-vsynth2-vref
@@ -70,7 +73,7 @@ fate-lavfi: $(FATE_LAVFI)
fate-seek: $(FATE_SEEK)
ifdef SAMPLES
-FATE += $(FATE_TESTS)
+FATE += $(FATE_TESTS) $(FATE_TESTS-yes)
fate-rsync:
rsync -vaLW rsync://fate-suite.libav.org/fate-suite/ $(SAMPLES)
else