To make pm-qa consistent, all thermal subtests should say "ok" or "err" instead of "pass" or "fail". The remaining subtests in pm-qa follow the ok/err scheme.
Signed-off-by: Lisa Nguyen lisa.nguyen@linaro.org --- include/thermal_functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/thermal_functions.sh b/include/thermal_functions.sh index f3c4783..a51240b 100644 --- a/include/thermal_functions.sh +++ b/include/thermal_functions.sh @@ -125,11 +125,11 @@ check_valid_binding() {
log_begin "checking $descr" if [ $trip_point_val -ge $trip_point_max ]; then - log_end "fail" + log_end "Err" return 1 fi
- log_end "pass" + log_end "Ok" return 0 }