fate_config.sh.template 1.15 KB
Newer Older
1 2
slot=                                    # some unique identifier
repo=git://source.ffmpeg.org/ffmpeg.git  # the source repository
3
#branch=release/2.6                       # the branch to test
4 5 6 7
samples=                                 # path to samples directory
workdir=                                 # directory in which to do all the work
#fate_recv="ssh -T fate@fate.ffmpeg.org" # command to submit report
comment=                                 # optional description
8
build_only=     # set to "yes" for a compile-only instance that skips tests
9
ignore_tests=
10 11 12 13 14

# the following are optional and map to configure options
arch=
cpu=
cross_prefix=
15
as=
16
cc=
17
ld=
18 19 20 21
target_os=
sysroot=
target_exec=
target_path=
22
target_samples=
23 24 25 26 27 28 29
extra_cflags=
extra_ldflags=
extra_libs=
extra_conf=     # extra configure options not covered above

#make=          # name of GNU make if not 'make'
makeopts=       # extra options passed to 'make'
James Almer's avatar
James Almer committed
30 31
#makeopts_fate= # extra options passed to 'make' when running tests,
                # defaulting to makeopts above if this is not set
32 33
#tar=           # command to create a tar archive from its arguments on stdout,
                # defaults to 'tar c'