From: "Steven Rostedt (Google)" <rostedt@xxxxxxxxxxx> If the kernel does not support kprobes, do not bother testing the kprobe interface. Signed-off-by: Steven Rostedt (Google) <rostedt@xxxxxxxxxxx> --- utest/tracefs-utest.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/utest/tracefs-utest.c b/utest/tracefs-utest.c index b295253..5bfd665 100644 --- a/utest/tracefs-utest.c +++ b/utest/tracefs-utest.c @@ -2280,6 +2280,11 @@ static void test_kprobes_instance(struct tracefs_instance *instance) int ret; int i; + if (!tracefs_file_exists(NULL, "kprobe_events")) { + printf("[KERNEL DOES NOT HAVE KPROBE EVENTS] ..."); + return; + } + tep = tep_alloc(); CU_TEST(tep != NULL); -- 2.43.0