diff options
author | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-11 14:49:53 +0200 |
---|---|---|
committer | Klaus Aehlig <klaus.aehlig@huawei.com> | 2023-04-11 15:46:55 +0200 |
commit | c1bd17cf5877f3cc236af12c23286a56d8051b8a (patch) | |
tree | e82c08768581850ade45e405c3767182985e5c22 /rules/shell/test/RULES | |
parent | 870efd45868aeed7e0c088bb3edd753bf52a299f (diff) | |
download | rules-cc-c1bd17cf5877f3cc236af12c23286a56d8051b8a.tar.gz |
["shell/test", "script"]: make TEST_RUN_NUMBER available
If RUNS_PER_TEST is given, inform each individual test action about
the run number it is executing. This can be used, e.g., to set
random seeds appropriately.
Diffstat (limited to 'rules/shell/test/RULES')
-rw-r--r-- | rules/shell/test/RULES | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/rules/shell/test/RULES b/rules/shell/test/RULES index 98bf27c..19f859f 100644 --- a/rules/shell/test/RULES +++ b/rules/shell/test/RULES @@ -12,6 +12,10 @@ , "TEST_TMPDIR. The test should not assume write permissions" , "outside the working directory and the TEST_TMPDIR." , "For convenience, the environment variable TMPDIR is also set to TEST_TMPDIR." + , "" + , "If the configuration variable RUNS_PER_TEST is set, the environment" + , "variable TEST_RUN_NUMBER will also be set to the number of the attempt," + , "counting from 0." ] , "name": [ "A name for the test, used in reporting, as well as for staging" @@ -32,7 +36,7 @@ [ "The number of times the test should be run in order to detect flakyness." , "If set, no test action will be taken from cache." ] - , "TEST_ENV": ["The environment for executing the test runner."] + , "TEST_ENV": ["Additional environment for executing the test runner."] } , "tainted": ["test"] , "artifacts_doc": |