1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
|
#
# Configuration file used by individual tests.
#
# This is set so that all files will be created inside the current
# sandbox.
[btest]
TmpDir = `echo .tmp`
BaselineDir = %(testbase)s/Baseline
[environment]
ORIGPATH=%(default_path)s
ENV1=Foo
ENV2=%(testbase)s
ENV3=`expr 42`
ENV4=`echo \(%(testbase)s=%(testbase)s\)`
[environment-foo]
FOO=BAR
[filter-foo]
cat=%(testbase)s/../../Scripts/test-filter
[substitution-foo]
printf=printf 'Hello, %%s'
[environment-foo2]
FOO2=`echo BAR2`
[environment-local]
BTEST_TEST_BASE=local_alternative
|