diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-04 12:04:21 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 05:39:25 +0200 |
commit | 95cbd97ccefc151e7ed7e0f32ea4584b2ea44e9c (patch) | |
tree | ff673e541033db998cec601db09e780d45968dff /tests/Makefile | |
parent | 80c7258b3a8f7e77abfed53a5bce7c23e25caad6 (diff) | |
download | ffmpeg-95cbd97ccefc151e7ed7e0f32ea4584b2ea44e9c.tar.gz |
tests/Makefile: Redo how to keep intermediate FATE-files
Extend the ordinary mechanism to signal KEEP for this.
This also allows to remove the keep-parameter from enc_dec,
transcode and stream_remux, so that several empty parameters
'""' could be removed.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests/Makefile')
-rw-r--r-- | tests/Makefile | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/tests/Makefile b/tests/Makefile index ca228ae897..7ddfbcfd7e 100644 --- a/tests/Makefile +++ b/tests/Makefile @@ -1,4 +1,16 @@ +ifneq ($(strip $(KEEP)),) +ifneq ($(strip $(KEEP)),0) +# KEEP_FILES is normally undefined; it is set to 2 # if the user requested +# to keep all intermediate FATE-files by setting KEEP. +# For some tests it is also set to 1 if it is unset; this indicates +# that only some intermediate files (namely only non-raw files) +# are to be kept. This allows reusing these intermediate files as input +# files for other tests (mostly the seek-tests). +KEEP_FILES = 2 +endif +endif + THREADS = 1 VREF = tests/vsynth1/00.pgm AREF = tests/data/asynth1.sw @@ -279,7 +291,7 @@ $(FATE): export EXECSUF = $(EXESUF) $(FATE): export HOSTEXECSUF = $(HOSTEXESUF) $(FATE): $(FATE_UTILS:%=tests/%$(HOSTEXESUF)) | $(FATE_OUTDIRS) @echo "TEST $(@:fate-%=%)" - $(Q)$(SRC_PATH)/tests/fate-run.sh $@ "$(TARGET_SAMPLES)" "$(TARGET_EXEC)" "$(TARGET_PATH)" '$(CMD)' '$(CMP)' '$(REF)' '$(FUZZ)' '$(THREADS)' '$(THREAD_TYPE)' '$(CPUFLAGS)' '$(CMP_SHIFT)' '$(CMP_TARGET)' '$(SIZE_TOLERANCE)' '$(CMP_UNIT)' '$(GEN)' '$(HWACCEL)' '$(REPORT)' '$(KEEP)' + $(Q)$(SRC_PATH)/tests/fate-run.sh $@ "$(TARGET_SAMPLES)" "$(TARGET_EXEC)" "$(TARGET_PATH)" '$(CMD)' '$(CMP)' '$(REF)' '$(FUZZ)' '$(THREADS)' '$(THREAD_TYPE)' '$(CPUFLAGS)' '$(CMP_SHIFT)' '$(CMP_TARGET)' '$(SIZE_TOLERANCE)' '$(CMP_UNIT)' '$(GEN)' '$(HWACCEL)' '$(REPORT)' '$(KEEP_FILES)' fate-list: @printf '%s\n' $(sort $(FATE)) |