diff options
author | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-03 05:15:06 +0200 |
---|---|---|
committer | Andreas Rheinhardt <andreas.rheinhardt@outlook.com> | 2022-05-06 05:39:25 +0200 |
commit | bf1337f99c66ac574c6e4da65c305ca878f1d65d (patch) | |
tree | 3d32629fb65dbce8dd3a8c464a6a4cb7e4edabfa /tests/fate-run.sh | |
parent | bf8411c495bea21625da3abf5114c7086cfdaf63 (diff) | |
download | ffmpeg-bf1337f99c66ac574c6e4da65c305ca878f1d65d.tar.gz |
tests/fate-run: Don't create unnecessary CRC-files, forward errors
These CRC-only files (the output of the CRC-muxer) are only used once,
so they need not be preserved. Furthermore, errors from ffmpeg (used
for creating the CRC) are no longer ignored with this patch.
Signed-off-by: Andreas Rheinhardt <andreas.rheinhardt@outlook.com>
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index c206a439b2..4f8988b964 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -272,8 +272,6 @@ stream_remux(){ ffmpeg2="$target_exec ${target_path}/ffmpeg${PROGSUF}${EXECSUF}" raw_src="${target_path}/tests/vsynth1/%02d.pgm" pcm_src="${target_path}/tests/data/asynth1.sw" -crcfile="tests/data/$test.lavf.crc" -target_crcfile="${target_path}/$crcfile" [ "${V-0}" -gt 0 ] && echov=echov || echov=: @@ -303,8 +301,8 @@ do_avconv(){ do_avconv_crc(){ f="$1" shift - run_avconv $* -f crc "$target_crcfile" - echo "$f $(cat $crcfile)" + printf "%s " "$f" + run_avconv $* -f crc - } lavf_audio(){ |