diff options
author | Fabrice Bellard <fabrice@bellard.org> | 2002-05-20 16:20:05 +0000 |
---|---|---|
committer | Fabrice Bellard <fabrice@bellard.org> | 2002-05-20 16:20:05 +0000 |
commit | 89d5dfd5e88adffe56add8217467c9de0dd424af (patch) | |
tree | bf424740198ce32200da2ff2047079ac29d1405f /tests/Makefile | |
parent | b5a40dc6d04318bacce37d51feda38ff07507682 (diff) | |
download | ffmpeg-89d5dfd5e88adffe56add8217467c9de0dd424af.tar.gz |
added libav regression tests
Originally committed as revision 537 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/Makefile b/tests/Makefile index 3a7bec0070..e661a46af6 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -7,6 +7,7 @@ include ../config.mak VPATH=$(SRC_PATH)/tests CFLAGS=-O2 -Wall -g REFFILE=$(SRC_PATH)/tests/ffmpeg.regression.ref +LIBAV_REFFILE=$(SRC_PATH)/tests/libav.regression.ref all: test @@ -14,9 +15,9 @@ all: test test mpeg4 mpeg: vsynth1/0.pgm asynth1.sw @$(SRC_PATH)/tests/regression.sh $@ $(REFFILE) -# update the regression test with the current results -updatetest: - cp /tmp/ffmpeg.regression $(REFFILE) +# fast regression for libav formats +libavtest: vsynth1/0.pgm asynth1.sw + @$(SRC_PATH)/tests/regression.sh $@ $(LIBAV_REFFILE) # video generation |