diff options
author | Måns Rullgård <mans@mansr.com> | 2010-03-02 21:42:03 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-03-02 21:42:03 +0000 |
commit | 801b571e33eed5aefac708cc361005448bf8387d (patch) | |
tree | 6bb49bea4e1e12a3f777972d488389c87de642da | |
parent | cc3e2472f31edc2ef3ee685e82f6cd924ed84d7e (diff) | |
download | ffmpeg-801b571e33eed5aefac708cc361005448bf8387d.tar.gz |
Remove unused argument to test scripts
Originally committed as revision 22156 to svn://svn.ffmpeg.org/ffmpeg/trunk
-rw-r--r-- | Makefile | 12 | ||||
-rwxr-xr-x | tests/regression-funcs.sh | 5 |
2 files changed, 8 insertions, 9 deletions
@@ -256,8 +256,8 @@ REFFILE = $(SRC_PATH)/tests/ref/$(1)/$(2:regtest-%=%) RESFILE = tests/data/$(2:regtest-%=%).$(1).regression define CODECTEST_CMD - $(SRC_PATH)/tests/codec-regression.sh $@ vsynth1 tests/vsynth1 a "$(TARGET_EXEC)" "$(TARGET_PATH)" - $(SRC_PATH)/tests/codec-regression.sh $@ vsynth2 tests/vsynth2 a "$(TARGET_EXEC)" "$(TARGET_PATH)" + $(SRC_PATH)/tests/codec-regression.sh $@ vsynth1 tests/vsynth1 "$(TARGET_EXEC)" "$(TARGET_PATH)" + $(SRC_PATH)/tests/codec-regression.sh $@ vsynth2 tests/vsynth2 "$(TARGET_EXEC)" "$(TARGET_PATH)" endef regtest-ref: regtest-aref regtest-vref @@ -266,7 +266,7 @@ regtest-vref: ffmpeg$(EXESUF) tests/vsynth1/00.pgm tests/vsynth2/00.pgm $(CODECTEST_CMD) regtest-aref: ffmpeg$(EXESUF) tests/data/asynth1.sw - @$(SRC_PATH)/tests/codec-regression.sh $@ acodec tests/acodec a "$(TARGET_EXEC)" "$(TARGET_PATH)" + @$(SRC_PATH)/tests/codec-regression.sh $@ acodec tests/acodec "$(TARGET_EXEC)" "$(TARGET_PATH)" $(VCODEC_TESTS): tests/tiny_psnr$(HOSTEXESUF) @echo "TEST VCODEC $(@:regtest-%=%)" @@ -276,17 +276,17 @@ $(VCODEC_TESTS): tests/tiny_psnr$(HOSTEXESUF) $(ACODEC_TESTS): tests/tiny_psnr$(HOSTEXESUF) @echo "TEST ACODEC $(@:regtest-%=%)" - @$(SRC_PATH)/tests/codec-regression.sh $@ acodec tests/acodec a "$(TARGET_EXEC)" "$(TARGET_PATH)" + @$(SRC_PATH)/tests/codec-regression.sh $@ acodec tests/acodec "$(TARGET_EXEC)" "$(TARGET_PATH)" @diff -u -w $(call REFFILE,acodec,$@) $(call RESFILE,acodec,$@) $(LAVF_TESTS): @echo "TEST LAVF $(@:regtest-%=%)" - @$(SRC_PATH)/tests/lavf-regression.sh $@ lavf tests/vsynth1 b "$(TARGET_EXEC)" "$(TARGET_PATH)" + @$(SRC_PATH)/tests/lavf-regression.sh $@ lavf tests/vsynth1 "$(TARGET_EXEC)" "$(TARGET_PATH)" @diff -u -w $(call REFFILE,lavf,$@) $(call RESFILE,lavf,$@) $(LAVFI_TESTS): @echo "TEST LAVFI $(@:regtest-%=%)" - @$(SRC_PATH)/tests/lavfi-regression.sh $@ lavfi tests/vsynth1 b "$(TARGET_EXEC)" "$(TARGET_PATH)" + @$(SRC_PATH)/tests/lavfi-regression.sh $@ lavfi tests/vsynth1 "$(TARGET_EXEC)" "$(TARGET_PATH)" @diff -u -w $(call REFFILE,lavfi,$@) $(call RESFILE,lavfi,$@) seektest: codectest lavftest tests/seek_test$(EXESUF) diff --git a/tests/regression-funcs.sh b/tests/regression-funcs.sh index 7727d2a49e..7aa57e0f7e 100755 --- a/tests/regression-funcs.sh +++ b/tests/regression-funcs.sh @@ -7,9 +7,8 @@ test="${1#regtest-}" test_ref=$2 raw_src_dir=$3 -outfile_prefix=$4 -target_exec=$5 -target_path=$6 +target_exec=$4 +target_path=$5 datadir="./tests/data" target_datadir="${target_path}/${datadir}" |