Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

selftests/user_events: add a note about user_events.h dependency

This test depends on <linux/user_events.h> exported in uapi
The following commit removed user_events.h out of uapi:
commit 5cfff569cab8 ("tracing: Move user_events.h temporarily out
of include/uapi")

This test will not compile until user_events.h is added back to uapi.

Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

+8
+8
tools/testing/selftests/user_events/Makefile
··· 2 2 CFLAGS += -Wl,-no-as-needed -Wall $(KHDR_INCLUDES) 3 3 LDLIBS += -lrt -lpthread -lm 4 4 5 + # Note: 6 + # This test depends on <linux/user_events.h> exported in uapi 7 + # The following commit removed user_events.h out of uapi: 8 + # commit 5cfff569cab8bf544bab62c911c5d6efd5af5e05 9 + # tracing: Move user_events.h temporarily out of include/uapi 10 + # This test will not compile until user_events.h is added 11 + # back to uapi. 12 + 5 13 TEST_GEN_PROGS = ftrace_test dyn_test perf_test 6 14 7 15 TEST_FILES := settings