From 7132d971f6b309c1f781a42df19271acf29c0d7b Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Tue, 5 Feb 2019 21:26:27 -0700 Subject: [PATCH] Add temp limit to report --- .bin/Scripts/functions/hw_diags.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.bin/Scripts/functions/hw_diags.py b/.bin/Scripts/functions/hw_diags.py index 9ede016e..3d6b5d03 100644 --- a/.bin/Scripts/functions/hw_diags.py +++ b/.bin/Scripts/functions/hw_diags.py @@ -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)