summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/kselftest/ksft.py
diff options
context:
space:
mode:
Diffstat (limited to 'tools/testing/selftests/kselftest/ksft.py')
-rw-r--r--tools/testing/selftests/kselftest/ksft.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/testing/selftests/kselftest/ksft.py b/tools/testing/selftests/kselftest/ksft.py
index bf215790a89d..0e030837fc17 100644
--- a/tools/testing/selftests/kselftest/ksft.py
+++ b/tools/testing/selftests/kselftest/ksft.py
@@ -27,6 +27,9 @@ def set_plan(num_tests):
def print_cnts():
+ if ksft_cnt['skip'] > 0:
+ print(f"# {ksft_cnt['skip']} skipped test(s) detected. Consider enabling relevant config options to improve coverage.")
+
print(
f"# Totals: pass:{ksft_cnt['pass']} fail:{ksft_cnt['fail']} xfail:0 xpass:0 skip:{ksft_cnt['skip']} error:0"
)