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
018f39ef
Commit
018f39ef
authored
Mar 05, 2012
by
Anton Khirnov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
FATE: add CPUFLAGS variable, mapping to -cpuflags avconv option.
parent
4138cd29
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
5 deletions
+9
-5
fate.texi
doc/fate.texi
+3
-1
Makefile
tests/Makefile
+1
-1
fate-run.sh
tests/fate-run.sh
+3
-2
regression-funcs.sh
tests/regression-funcs.sh
+2
-1
No files found.
doc/fate.texi
View file @
018f39ef
...
...
@@ -75,10 +75,12 @@ meaning only while running the regression tests.
@item THREADS
Specify how many threads to use while running regression tests, it is
quite useful to detect thread-related regressions.
@item CPUFLAGS
Specify a mask to be applied to autodetected CPU flags.
@end table
@example
make V=1 SAMPLES=/var/fate/samples THREADS=2 fate
make V=1 SAMPLES=/var/fate/samples THREADS=2
CPUFLAGS=mmx
fate
@end example
@chapter Automated Tests
...
...
tests/Makefile
View file @
018f39ef
...
...
@@ -116,7 +116,7 @@ fate: $(FATE)
$(FATE)
:
avconv$(EXESUF) $(FATE_UTILS:%=tests/%$(HOSTEXESUF))
@
echo
"TEST
$
(@:fate-%=%)"
$(Q)$(SRC_PATH)
/tests/fate-run.sh
$@
"
$(SAMPLES)
"
"
$(TARGET_EXEC)
"
"
$(TARGET_PATH)
"
'
$(CMD)
'
'
$(CMP)
'
'
$(REF)
'
'
$(FUZZ)
'
'
$(THREADS)
'
'
$(THREAD_TYPE)
'
$(Q)$(SRC_PATH)
/tests/fate-run.sh
$@
"
$(SAMPLES)
"
"
$(TARGET_EXEC)
"
"
$(TARGET_PATH)
"
'
$(CMD)
'
'
$(CMP)
'
'
$(REF)
'
'
$(FUZZ)
'
'
$(THREADS)
'
'
$(THREAD_TYPE)
'
'
$(CPUFLAGS)
'
fate-list
:
@
printf
'%s\n'
$
(
sort
$(FATE)
)
...
...
tests/fate-run.sh
View file @
018f39ef
...
...
@@ -17,6 +17,7 @@ ref=${7:-"${base}/ref/fate/${test}"}
fuzz
=
$8
threads
=
${
9
:-
1
}
thread_type
=
${
10
:-
frame
+slice
}
cpuflags
=
${
11
:-
all
}
outdir
=
"tests/data/fate"
outfile
=
"
${
outdir
}
/
${
test
}
"
...
...
@@ -50,7 +51,7 @@ run(){
}
avconv
(){
run avconv
-nostats
-threads
$threads
-thread_type
$thread_type
"
$@
"
run avconv
-nostats
-threads
$threads
-thread_type
$thread_type
-cpuflags
$cpuflags
"
$@
"
}
framecrc
(){
...
...
@@ -76,7 +77,7 @@ pcm(){
regtest
(){
t
=
"
${
test
#
$2
-
}
"
ref
=
${
base
}
/ref/
$2
/
$t
${
base
}
/
${
1
}
-regression
.sh
$t
$2
$3
"
$target_exec
"
"
$target_path
"
"
$threads
"
"
$thread_type
"
${
base
}
/
${
1
}
-regression
.sh
$t
$2
$3
"
$target_exec
"
"
$target_path
"
"
$threads
"
"
$thread_type
"
"
$cpuflags
"
}
codectest
(){
...
...
tests/regression-funcs.sh
View file @
018f39ef
...
...
@@ -10,6 +10,7 @@ raw_src_dir=$3
target_exec
=
$4
target_path
=
$5
threads
=
${
6
:-
1
}
cpuflags
=
${
8
:-
all
}
datadir
=
"./tests/data"
target_datadir
=
"
${
target_path
}
/
${
datadir
}
"
...
...
@@ -43,7 +44,7 @@ echov(){
.
$(
dirname
$0
)
/md5.sh
AVCONV_OPTS
=
"-nostats -y"
AVCONV_OPTS
=
"-nostats -y
-cpuflags
$cpuflags
"
COMMON_OPTS
=
"-flags +bitexact -idct simple -sws_flags +accurate_rnd+bitexact"
DEC_OPTS
=
"
$COMMON_OPTS
-threads
$threads
"
ENC_OPTS
=
"
$COMMON_OPTS
-threads 1 -dct fastint"
...
...
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