diff mbox series

libtracefs: utest: Do not fail if uprobes are not supported by kernel

Message ID 20250403135027.31a27ee5@gandalf.local.home (mailing list archive)
State New
Headers show
Series libtracefs: utest: Do not fail if uprobes are not supported by kernel | expand

Commit Message

Steven Rostedt April 3, 2025, 5:50 p.m. UTC
From: "Steven Rostedt (Google)" <rostedt@goodmis.org>

If the kernel does not support uprobes, do not fail the unit tests, but report
that the kernel does not support it.

Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
---
 utest/tracefs-utest.c | 10 ++++++++++
 1 file changed, 10 insertions(+)
diff mbox series

Patch

diff --git a/utest/tracefs-utest.c b/utest/tracefs-utest.c
index 8c9aab4..cc7e689 100644
--- a/utest/tracefs-utest.c
+++ b/utest/tracefs-utest.c
@@ -2206,6 +2206,7 @@  static bool check_probes(struct probe_test *probes, int count,
 {
 	enum tracefs_dynevent_type type;
 	struct tep_event *tevent;
+	bool uprobes_supported = true;
 	char *ename;
 	char *address;
 	char *event;
@@ -2240,6 +2241,15 @@  static bool check_probes(struct probe_test *probes, int count,
 			}
 			ret = tracefs_event_enable(instance, system, event);
 			if (in_system) {
+				/* ENOTSUPP is 524 */
+				if (ret && errno == 524) {
+					if (uprobes_supported)
+						printf("[KERNEL DOES NOT HAVE UPROBE EVENTS] ...");
+					uprobes_supported = false;
+					/* Count it as passed */
+					found++;
+					break;
+				}
 				CU_TEST(ret == 0);
 			} else {
 				CU_TEST(ret != 0);