diff options
author | Måns Rullgård <mans@mansr.com> | 2010-09-23 09:55:31 +0000 |
---|---|---|
committer | Måns Rullgård <mans@mansr.com> | 2010-09-23 09:55:31 +0000 |
commit | c4795e8069cf6867a59e94b1d9f258d733fb4c53 (patch) | |
tree | 2adcdd95083d8d3eccdcb394cd5de43cce652a6e /tests/fate-run.sh | |
parent | b7d56a17ae14fa538b5dc5630df6e937319ae57b (diff) | |
download | ffmpeg-c4795e8069cf6867a59e94b1d9f258d733fb4c53.tar.gz |
fate: print commands being executed with V=1
Originally committed as revision 25161 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests/fate-run.sh')
-rwxr-xr-x | tests/fate-run.sh | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/fate-run.sh b/tests/fate-run.sh index 8117c453fc..c4a9a13e11 100755 --- a/tests/fate-run.sh +++ b/tests/fate-run.sh @@ -43,6 +43,7 @@ stddev(){ } run(){ + test "${V:-0}" -gt 0 && echo "$target_exec" $target_path/"$@" >&3 $target_exec $target_path/"$@" } @@ -109,6 +110,7 @@ seektest(){ mkdir -p "$outdir" +exec 3>&2 $command > "$outfile" 2>$errfile err=$? |