File tree Expand file tree Collapse file tree 6 files changed +14
-5
lines changed Expand file tree Collapse file tree 6 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ def __init__(self):
4141 }
4242
4343 self .tags = {'scs' , 'external-resources' }
44- self .maintainers = ['TR' , ' VH' ]
44+ self .maintainers = ['VH' ]
4545
4646
4747@rfm .parameterized_test (* ([s , v ]
Original file line number Diff line number Diff line change @@ -29,7 +29,6 @@ class BuildHip(rfm.RegressionTest):
2929 executable = f'{ hip_path } /bin/hipcc'
3030 executable_opts = ['--version' ]
3131 maintainers = ['JO' ]
32- tags = {'production' }
3332
3433 @run_before ('compile' )
3534 def set_compile_options (self ):
@@ -64,7 +63,6 @@ class HelloHip(rfm.RegressionTest):
6463 build_system = 'Make'
6564 executable = f'{ sample_dir } /{ sample } /{ sample } '
6665 maintainers = ['JO' ]
67- tags = {'production' }
6866
6967 @run_after ('init' )
7068 def set_deps (self ):
Original file line number Diff line number Diff line change @@ -1321,6 +1321,8 @@ General Configuration
13211321
13221322 Trap command errors in the generated job scripts and let them exit immediately.
13231323
1324+ .. versionadded :: 3.2
1325+
13241326
13251327.. js :attribute :: .general [].keep_stage_files
13261328
Original file line number Diff line number Diff line change @@ -1113,7 +1113,7 @@ Here is an alphabetical list of the environment variables recognized by ReFrame:
11131113
11141114.. envvar :: RFM_TRAP_JOB_ERRORS
11151115
1116- Ignore job exit code
1116+ Trap job errors in submitted scripts and fail tests automatically.
11171117
11181118 .. table ::
11191119 :align: left
@@ -1122,6 +1122,8 @@ Here is an alphabetical list of the environment variables recognized by ReFrame:
11221122 Associated configuration parameter :js:attr: `trap_job_errors ` general configuration parameter
11231123 ================================== ==================
11241124
1125+ .. versionadded :: 3.9.0
1126+
11251127
11261128.. envvar :: RFM_UNLOAD_MODULES
11271129
Original file line number Diff line number Diff line change 66import os
77import sys
88
9- VERSION = '3.9 .0-dev.3 '
9+ VERSION = '3.10 .0-dev.0 '
1010INSTALL_PREFIX = os .path .normpath (
1111 os .path .abspath (os .path .join (os .path .dirname (__file__ ), '..' ))
1212)
Original file line number Diff line number Diff line change @@ -530,6 +530,13 @@ def main():
530530 configvar = 'logging/handlers_perflog/syslog_address' ,
531531 help = 'Syslog server address'
532532 )
533+ argparser .add_argument (
534+ dest = 'trap_job_errors' ,
535+ envvar = 'RFM_TRAP_JOB_ERRORS' ,
536+ configvar = 'general/trap_job_errors' ,
537+ action = 'store_true' ,
538+ help = 'Trap job errors in job scripts and fail tests automatically'
539+ )
533540 argparser .add_argument (
534541 dest = 'use_login_shell' ,
535542 envvar = 'RFM_USE_LOGIN_SHELL' ,
You can’t perform that action at this time.
0 commit comments