Add temp limit to report
This commit is contained in:
parent
dc6de9cab0
commit
7132d971f6
1 changed files with 3 additions and 1 deletions
|
|
@ -1440,7 +1440,9 @@ def run_mprime_test(state, test):
|
|||
' {YELLOW}Aborted{CLEAR}'.format(**COLORS))
|
||||
if test.thermal_abort:
|
||||
test.report.append(
|
||||
' {RED}CPU reached temperature limit{CLEAR}'.format(**COLORS))
|
||||
' {RED}CPU reached temperature limit of {temp}°C{CLEAR}'.format(
|
||||
temp=THERMAL_LIMIT,
|
||||
**COLORS))
|
||||
|
||||
# Done
|
||||
update_progress_pane(state)
|
||||
|
|
|
|||
Loading…
Reference in a new issue