...
Property | Description | Default |
|---|---|---|
test-run.name | The name of the test-run. The name should match one of the files located in the build/test-runs/ directory minus the '.properties' extension. | pre-commit |
results.dir | The directory where Ant stores the results of the test run. |
|
results.archive | The directory where Ant gzips and archives a copy of test run results and reports. |
|
send.reports | Define this property to send reports via email. | (Undefined) |
mail.from | The from address used when emailing report. | jikesrvm-core@lists.sourceforge.net |
mail.to | The to address used when emailing report. | jikesrvm-regression@lists.sourceforge.net |
mail.host | The host to connect to when sending mail. | localhost |
mail.port | The port to connect to when sending mail. | 25 |
<configuration>.built | If set to true, the test process will skip the build step for specified configurations. For the test process to work the build must already be present. | (Undefined) |
skip.build | If defined the test process will skip the build step for all configurations and the javadoc generation step. For the test process to work the build must already be present. | (Undefined) |
skip.javadoc | If defined the test process will skip the javadoc generation step. | (Undefined) |
...
A test-run is defined by a number of properties located in a property file located in the build/test-runs/ directory.
The property test.configs is a whitespace separated list of test-configuration "tags". Every tag uniquely identifies a particular test-configuration. Every test-configuration is defined by a number of properties in the property file that are prefixed with test.config.<tag>. and the following table defines the possible properties.
...