Message ID | 20240820174517.152e4404@gandalf.local.home (mailing list archive) |
---|---|
State | Accepted |
Commit | ff20336f8506912a5423d7e706f7c36cf4c5fbf4 |
Headers | show |
Series | libtracefs utest: Do not test kprobe interface if there's no kprobes | expand |
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);