diff options
author | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-25 00:28:03 +0000 |
---|---|---|
committer | Baptiste Coudurier <baptiste.coudurier@gmail.com> | 2008-05-25 00:28:03 +0000 |
commit | fd83ad7f02559091318f655e7b8a2f241f7b0244 (patch) | |
tree | 8c567ded1ac01c528a6fb62cbae2dc41868643a0 /tests | |
parent | c351cc7f57fd4e126fc7f8312a70df4c4ae80ad1 (diff) | |
download | ffmpeg-fd83ad7f02559091318f655e7b8a2f241f7b0244.tar.gz |
use short option
Originally committed as revision 13371 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/server-regression.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/server-regression.sh b/tests/server-regression.sh index 24685aad64..dfb9ed4c68 100755 --- a/tests/server-regression.sh +++ b/tests/server-regression.sh @@ -18,9 +18,9 @@ echo "Waiting for feeds to startup..." WGET_OPTIONS="--user-agent=NSPlayer -q --proxy=off -e verbose=off -e server_response=off" for file in $FILES; do if [ `expr $file : "a-*"` != 0 ]; then - wget $WGET_OPTIONS --output-document=- http://localhost:9999/$file > ff-$file + wget $WGET_OPTIONS -O - http://localhost:9999/$file > ff-$file else - wget $WGET_OPTIONS --output-document=- 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=20000 > ff-$file 2>/dev/null fi MDFILES="$MDFILES ff-$file" done |