mirror of https://git.ffmpeg.org/ffmpeg.git
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 <mans@mansr.com>
This commit is contained in:
parent
6797d1948b
commit
ed7409fe9d
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue