1
0
Fork 0

selftests: intel_pstate: return Kselftest Skip code for skipped tests

[ Upstream commit 5c30a038fb ]

When intel_pstate test is skipped because of unmet dependencies and/or
unsupported configuration, it returns 0 which is treated as a pass
by the Kselftest framework. This leads to false positive result even
when the test could not be run.

Change it to return kselftest skip code when a test gets skipped to
clearly report that the test could not be run.

Kselftest framework SKIP code is 4 and the framework prints appropriate
messages to indicate that the test is skipped.

Signed-off-by: Shuah Khan (Samsung OSG) <shuah@kernel.org>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
pull/10/head
Shuah Khan (Samsung OSG) 2018-05-03 17:09:40 -06:00 committed by Greg Kroah-Hartman
parent 4312c2df0b
commit f559bb20c1
1 changed files with 4 additions and 1 deletions

View File

@ -30,9 +30,12 @@
EVALUATE_ONLY=0
# Kselftest framework requirement - SKIP code is 4.
ksft_skip=4
if ! uname -m | sed -e s/i.86/x86/ -e s/x86_64/x86/ | grep -q x86; then
echo "$0 # Skipped: Test can only run on x86 architectures."
exit 0
exit $ksft_skip
fi
max_cpus=$(($(nproc)-1))