Module: libav Branch: master Commit: ed7409fe9da8da941cdc91e8d86cb8b77ef8038e
Author: Mans Rullgard <[email protected]> Committer: Mans Rullgard <[email protected]> Date: Tue May 15 22:02:42 2012 +0100 fate: work around non-standard wc implementations On some systems, the wc command prints spaces before the first number causing mismatches with the test references. Using the output of wc as arguments to echo removes any extra whitespace. Signed-off-by: Mans Rullgard <[email protected]> --- tests/regression-funcs.sh | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/regression-funcs.sh b/tests/regression-funcs.sh index 3889129..c6ca00b 100755 --- a/tests/regression-funcs.sh +++ b/tests/regression-funcs.sh @@ -67,7 +67,7 @@ do_avconv() elif [ $f = $pcm_dst ] ; then $tiny_psnr $f $pcm_ref 2 else - wc -c $f + echo $(wc -c $f) fi } @@ -82,7 +82,7 @@ do_avconv_nomd5() elif [ $f = $pcm_dst ] ; then $tiny_psnr $f $pcm_ref 2 else - wc -c $f + echo $(wc -c $f) fi } _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
