Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion reframe/frontend/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -924,6 +924,7 @@ def print_infoline(param, value):
'config_files': rt.site_config.sources,
'data_version': runreport.DATA_VERSION,
'hostname': socket.gethostname(),
'log_files': logging.log_files(),
'prefix_output': rt.output_prefix,
'prefix_stage': rt.stage_prefix,
'user': osext.osuser(),
Expand All @@ -950,7 +951,7 @@ def print_infoline(param, value):
print_infoline('stage directory', repr(session_info['prefix_stage']))
print_infoline('output directory', repr(session_info['prefix_output']))
print_infoline('log files',
', '.join(repr(s) for s in logging.log_files()))
', '.join(repr(s) for s in session_info['log_files']))
printer.info('')
try:
logging.getprofiler().enter_region('test processing')
Expand Down
2 changes: 1 addition & 1 deletion reframe/frontend/runreport.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# The schema data version
# Major version bumps are expected to break the validation of previous schemas

DATA_VERSION = '3.0'
DATA_VERSION = '3.1'
_SCHEMA = os.path.join(rfm.INSTALL_PREFIX, 'reframe/schemas/runreport.json')


Expand Down
4 changes: 4 additions & 0 deletions reframe/schemas/runreport.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,10 @@
},
"data_version": {"type": "string"},
"hostname": {"type": "string"},
"log_files": {
"type": "array",
"items": {"type": "string"}
},
"num_cases": {"type": "number"},
"num_failures": {"type": "number"},
"num_aborted": {"type": "number"},
Expand Down