Previous: The [module].conf suite configuration, Up: Configuration files
Finally, you need to setup an additional configuration file for each test to be executed. This test.conf file is stored inside the compressed RTA file.
There is no mandatory parameter in this configuration file, and only environment variables may be defined in it (new ones or overriding the ones specified in the suite configuration file).
[module].[VARNAME]
(Optional)’%COMMON%
reserved word to indicate the
suite-specific ‘common’ directory (prefix/suites/[module]/common/),
or the ZIPBASE
reserver word to indicate the directory where the RTA was
decompressed (so that test-specific files stored inside the RTA can be
referenced from within the TCL script).
An example of test.conf configuration file (to be used in a test of the ‘generic’ module, is the following:
# test.conf # Configuration file for a specific test in the ARTE testing framework # New environment vars for the TCL interpreter generic.TESTDATA="ZIPBASE/testdata.txt" # Override suite-specific environment var generic.HELLO="Hoola Mundo!" |