Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
F
ffmpeg.wasm-core
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Linshizhi
ffmpeg.wasm-core
Commits
d746f928
Commit
d746f928
authored
Apr 12, 2003
by
Philip Gladstone
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add a file serving test as well
Originally committed as revision 1763 to
svn://svn.ffmpeg.org/ffmpeg/trunk
parent
d86852d1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
8 deletions
+21
-8
server-regression.sh
tests/server-regression.sh
+21
-8
No files found.
tests/server-regression.sh
View file @
d746f928
#!/bin/bash
FILES
=
`
perl
-n
-e
'print \$1, " " if /<stream\\s+(\\S+)>/i'
test.conf
`
# Make sure that the data directory exists
mkdir
-p
data
cp
test.conf data/test.conf
perl
-e
'chomp($wd = `pwd`); print map { s!data/!!; "<Stream $_>\nFile $wd/data/$_\n</Stream>\n\n" } @ARGV'
data/a
*
>>
data/test.conf
perl
-e
'chomp($wd = `pwd`); print map { s!data/!!; "<Stream $_.asf>\nFile $wd/data/$_\n</Stream>\n\n" } @ARGV'
data/a
*
>>
data/test.conf
FILES
=
`
perl
-n
-e
'print \$1, " " if /<stream\\s+(\\S+)>/i'
data/test.conf
`
rm
-f
/tmp/feed.ffm
../ffserver
-d
-f
test.conf 2> /dev/null &
../ffserver
-d
-f
data/
test.conf 2> /dev/null &
FFSERVER_PID
=
$!
sleep
1
echo
"Waiting for feeds to startup..."
sleep
2
(
cd
data
rm
-f
$FILES
;
cd
data
||
exit
$?
rm
-f
ff-
*
;
WGET_OPTIONS
=
"--user-agent=NSPlayer -q --proxy=off -e verbose=off -e debug=off -e server_response=off"
for
file
in
$FILES
;
do
wget
--user-agent
=
NSPlayer
-q
--proxy
=
off
-e
verbose
=
off
-e
debug
=
off
-e
server_response
=
off
\
--output-document
=
- http://localhost:9999/
$file
?date
=
19700101T000000Z |
head
--bytes
=
100000
>
$file
&
if
[
`
expr
match
$file
"a-*"
`
-ne
0
]
;
then
wget
$WGET_OPTIONS
--output-document
=
- http://localhost:9999/
$file
>
ff-
$file
&
else
wget
$WGET_OPTIONS
--output-document
=
- http://localhost:9999/
$file
?date
=
19700101T000000Z |
head
--bytes
=
100000
>
ff-
$file
&
fi
MDFILES
=
"
$MDFILES
ff-
$file
"
done
wait
# the status page is always different
md5sum
$FILES
|
grep
-v
html
>
ffserver.regression
md5sum
$
MD
FILES
|
grep
-v
html
>
ffserver.regression
)
kill
$FFSERVER_PID
wait
>
/dev/null 2>&1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment