Skip to content

Commit 7357b5e

Browse files
laoarKernel Patches Daemon
authored and
Kernel Patches Daemon
committed
selftests/bpf: Add selftest for attaching fexit to __noreturn functions
The reuslt: $ tools/testing/selftests/bpf/test_progs --name=fexit_noreturns #99 fexit_noreturns:OK Summary: 1/0 PASSED, 0 SKIPPED, 0 FAILED Signed-off-by: Yafang Shao <[email protected]>
1 parent 5ed2130 commit 7357b5e

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
3+
#include <test_progs.h>
4+
#include "fexit_noreturns.skel.h"
5+
6+
void test_fexit_noreturns(void)
7+
{
8+
struct fexit_noreturns *fexit_skel;
9+
10+
fexit_skel = fexit_noreturns__open_and_load();
11+
ASSERT_NULL(fexit_skel, "fexit_load");
12+
ASSERT_EQ(errno, EINVAL, "can't load fexit_noreturns");
13+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// SPDX-License-Identifier: GPL-2.0
2+
3+
#include <linux/bpf.h>
4+
#include <bpf/bpf_helpers.h>
5+
#include <bpf/bpf_tracing.h>
6+
7+
char _license[] SEC("license") = "GPL";
8+
9+
SEC("fexit/do_exit")
10+
int BPF_PROG(noreturns)
11+
{
12+
return 0;
13+
}

0 commit comments

Comments
 (0)