]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/commitdiff
selftests: intel_pstate: return Kselftest Skip code for skipped tests
authorShuah Khan (Samsung OSG) <shuah@kernel.org>
Thu, 3 May 2018 23:09:40 +0000 (17:09 -0600)
committerShuah Khan (Samsung OSG) <shuah@kernel.org>
Wed, 30 May 2018 21:21:53 +0000 (15:21 -0600)
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>
tools/testing/selftests/intel_pstate/run.sh

index c670359becc6c2d0d6f0ba750a40cc6aad9a9e27..6ded61670f6dde674c9ea38ffeeabee47b3e0f9f 100755 (executable)
 
 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))