tests/ffserver-regression.sh: Fix file truncation introduced in 508826f961

Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
This commit is contained in:
Michael Niedermayer 2016-11-28 18:36:16 +01:00
parent 8899057d91
commit 319a7c5dea
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ sleep 2
if [ $(expr $file : "a-*") != 0 ]; then
wget $WGET_OPTIONS -O - http://localhost:9999/$file > ff-$file
else
wget $WGET_OPTIONS -O - http://localhost:9999/$file?date=19700101T000000Z | dd bs=1 count=20000 > ff-$file 2>/dev/null
wget $WGET_OPTIONS -O - http://localhost:9999/$file?date=19700101T000000Z | dd bs=1 count=100000 > ff-$file 2>/dev/null
fi
do_md5sum ff-$file >>ffserver.regression
done