commit | 3ab64064ed5cf12f40f451279ed205fa5c6fa81d | [log] [tgz] |
---|---|---|
author | Sanjay Singh Rawat <sanjay.rawat@linaro.org> | Tue Jul 08 16:50:56 2014 +0200 |
committer | Sanjay Singh Rawat <sanjay.rawat@linaro.org> | Tue Jul 08 16:51:44 2014 +0200 |
tree | 6e26c936afd46c3826f4d5cac663af8d4a9492f7 | |
parent | 8b6ad7c259e327f3403364ef067119646f18dc42 [diff] [blame] |
thermal: change result string to standard for check_valid_temp changing as required by lava Signed-off-by: Sanjay Singh Rawat <sanjay.rawat@linaro.org>
diff --git a/include/thermal_functions.sh b/include/thermal_functions.sh index 0c836c5..f3c4783 100644 --- a/include/thermal_functions.sh +++ b/include/thermal_functions.sh
@@ -43,11 +43,11 @@ log_begin "checking $descr" if [ $temp_val -gt 0 ]; then - log_end "pass" + log_end "Ok" return 0 fi - log_end "fail" + log_end "Err" return 1 }