summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMichael Niedermayer <michael@niedermayer.cc>2016-11-28 18:36:16 +0100
committerMichael Niedermayer <michael@niedermayer.cc>2016-11-28 22:41:43 +0100
commit319a7c5deae5ab3525860a28e013625a6c538c2a (patch)
treec3126a1931c31b7b135f09841b7232efb4af5c81 /tests
parent8899057d914af32e08042b3e6f25da563485644b (diff)
tests/ffserver-regression.sh: Fix file truncation introduced in 508826f961caf662cadb7c253e3c0e7d75104bdd
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
Diffstat (limited to 'tests')
-rwxr-xr-xtests/ffserver-regression.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/ffserver-regression.sh b/tests/ffserver-regression.sh
index 192d362a62..0810181b51 100755
--- a/tests/ffserver-regression.sh
+++ b/tests/ffserver-regression.sh
@@ -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