summaryrefslogtreecommitdiff
path: root/tools/testing/selftests/breakpoints/step_after_suspend_test.c
diff options
context:
space:
mode:
authorPaul Elder <paul.elder@pitt.edu>2017-06-15 18:54:22 +0300
committerShuah Khan <shuahkh@osg.samsung.com>2017-06-16 03:10:29 +0300
commite4d1065b315b433f224920f1617bc3783230501c (patch)
tree580be6d9207d965e1b227f37ce1c4dee7479681c /tools/testing/selftests/breakpoints/step_after_suspend_test.c
parent54f57baab644e99b6da34d9538b2a9c0a05b690d (diff)
downloadlinux-e4d1065b315b433f224920f1617bc3783230501c.tar.xz
kselftest: make callers of ksft_exit_skip() output the reason for skipping
Make the three tests that did use the old ksft_ext_skip() (breakpoints/breakpoint_test_arm64, breakpoints/step_after_suspend_test, and membarrier_test) use the new one, with an output for the reason for skipping all the tests. Signed-off-by: Paul Elder <paul.elder@pitt.edu> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Diffstat (limited to 'tools/testing/selftests/breakpoints/step_after_suspend_test.c')
-rw-r--r--tools/testing/selftests/breakpoints/step_after_suspend_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/testing/selftests/breakpoints/step_after_suspend_test.c b/tools/testing/selftests/breakpoints/step_after_suspend_test.c
index bf37c1087f25..c60c2effb6bc 100644
--- a/tools/testing/selftests/breakpoints/step_after_suspend_test.c
+++ b/tools/testing/selftests/breakpoints/step_after_suspend_test.c
@@ -83,8 +83,8 @@ bool run_test(int cpu)
if (ptrace(PTRACE_SINGLESTEP, pid, NULL, NULL) < 0) {
if (errno == EIO) {
- printf("ptrace(PTRACE_SINGLESTEP) not supported on this architecture\n");
- ksft_exit_skip();
+ ksft_exit_skip("ptrace(PTRACE_SINGLESTEP) "
+ "not supported on this architecture");
}
perror("ptrace(PTRACE_SINGLESTEP) failed");
return false;