diff options
author | George Boyle <george@thebuds.net> | 2015-06-25 18:37:10 +0100 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2015-06-27 03:42:47 +0200 |
commit | 3f18cb97e5a7b1ef1094e78ef3937944573347eb (patch) | |
tree | b29c66edd09642ad38c5351c7dc78642c09235b9 /tests/Makefile | |
parent | 1221b7df6817e4d2603e7ca8c226ce0e13eee5bb (diff) | |
download | ffmpeg-3f18cb97e5a7b1ef1094e78ef3937944573347eb.tar.gz |
fate/api-tests: Add directory and Makefile for API tests
The intention of this change is to allow separation of API tests from the
existing tests, and also to have a place for the API test source/executable
files so they're not mixed in with the actual library code.
Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/Makefile b/tests/Makefile index cffa541213..f4f34a66b3 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -16,7 +16,8 @@ ffservertest: ffserver$(EXESUF) tests/vsynth1/00.pgm tests/data/asynth1.sw @echo $(SRC_PATH)/tests/ffserver-regression.sh $(FFSERVER_REFFILE) $(SRC_PATH)/tests/ffserver.conf -OBJDIRS += tests/data tests/vsynth1 tests/data/filtergraphs +APITESTSDIR := tests/api +OBJDIRS += tests/data tests/vsynth1 tests/data/filtergraphs $(APITESTSDIR) $(VREF): tests/videogen$(HOSTEXESUF) | tests/vsynth1 $(M)./$< 'tests/vsynth1/' @@ -89,6 +90,8 @@ FILTERDEMDECENCMUX = $(call ALLYES, $(1:%=%_FILTER) $(2)_DEMUXER $(3)_DECODER $( PARSERDEMDEC = $(call ALLYES, $(1)_PARSER $(2)_DEMUXER $(3)_DECODER) +include $(SRC_PATH)/$(APITESTSDIR)/Makefile + include $(SRC_PATH)/tests/fate/acodec.mak include $(SRC_PATH)/tests/fate/vcodec.mak include $(SRC_PATH)/tests/fate/avformat.mak @@ -218,7 +221,7 @@ lcov-reset: clean:: testclean -testclean: +testclean:: $(RM) -r tests/vsynth1 tests/data tools/lavfi-showfiltfmts$(EXESUF) $(RM) $(CLEANSUFFIXES:%=tests/%) $(RM) $(TESTTOOLS:%=tests/%$(HOSTEXESUF)) |