diff options
| author | Philo Lu <[email protected]> | 2024-09-11 03:37:16 +0000 |
|---|---|---|
| committer | Martin KaFai Lau <[email protected]> | 2024-09-11 15:56:42 +0000 |
| commit | 2060f07f861a237345922023e9347a204c0795af (patch) | |
| tree | 69566fa44cfef78bc28ac3dcdfc9607308416bb6 /tools/testing/selftests/bpf/prog_tests | |
| parent | bpf: Support __nullable argument suffix for tp_btf (diff) | |
| download | kernel-2060f07f861a237345922023e9347a204c0795af.tar.gz kernel-2060f07f861a237345922023e9347a204c0795af.zip | |
selftests/bpf: Add test for __nullable suffix in tp_btf
Add a tracepoint with __nullable suffix in bpf_testmod, and add cases
for it:
$ ./test_progs -t "tp_btf_nullable"
#406/1 tp_btf_nullable/handle_tp_btf_nullable_bare1:OK
#406/2 tp_btf_nullable/handle_tp_btf_nullable_bare2:OK
#406 tp_btf_nullable:OK
Summary: 1/2 PASSED, 0 SKIPPED, 0 FAILED
Signed-off-by: Philo Lu <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Martin KaFai Lau <[email protected]>
Diffstat (limited to 'tools/testing/selftests/bpf/prog_tests')
| -rw-r--r-- | tools/testing/selftests/bpf/prog_tests/tp_btf_nullable.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tools/testing/selftests/bpf/prog_tests/tp_btf_nullable.c b/tools/testing/selftests/bpf/prog_tests/tp_btf_nullable.c new file mode 100644 index 000000000000..accc42e01f8a --- /dev/null +++ b/tools/testing/selftests/bpf/prog_tests/tp_btf_nullable.c @@ -0,0 +1,14 @@ +// SPDX-License-Identifier: GPL-2.0 + +#include <test_progs.h> +#include "test_tp_btf_nullable.skel.h" + +void test_tp_btf_nullable(void) +{ + if (!env.has_testmod) { + test__skip(); + return; + } + + RUN_TESTS(test_tp_btf_nullable); +} |
