summaryrefslogtreecommitdiffstats
path: root/tools/testing/selftests/bpf/progs/test_global_func17.c
diff options
context:
space:
mode:
authorAndrii Nakryiko <andrii@kernel.org>2023-02-15 20:59:53 -0800
committerDaniel Borkmann <daniel@iogearbox.net>2023-02-17 21:20:44 +0100
commit95ebb376176c52382293e05e63f142114a5e40ef (patch)
tree17b8bedca1f8aa7ab08816ef2f6fede6108a38fe /tools/testing/selftests/bpf/progs/test_global_func17.c
parentd384dce281ed1b504fae2e279507827638d56fa3 (diff)
downloadlinux-stable-95ebb376176c52382293e05e63f142114a5e40ef.tar.gz
linux-stable-95ebb376176c52382293e05e63f142114a5e40ef.tar.bz2
linux-stable-95ebb376176c52382293e05e63f142114a5e40ef.zip
selftests/bpf: Convert test_global_funcs test to test_loader framework
Convert 17 test_global_funcs subtests into test_loader framework for easier maintenance and more declarative way to define expected failures/successes. Signed-off-by: Andrii Nakryiko <andrii@kernel.org> Signed-off-by: Daniel Borkmann <daniel@iogearbox.net> Acked-by: Stanislav Fomichev <sdf@google.com> Link: https://lore.kernel.org/bpf/20230216045954.3002473-3-andrii@kernel.org
Diffstat (limited to 'tools/testing/selftests/bpf/progs/test_global_func17.c')
-rw-r--r--tools/testing/selftests/bpf/progs/test_global_func17.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/progs/test_global_func17.c b/tools/testing/selftests/bpf/progs/test_global_func17.c
index 2b8b9b8ba018..a32e11c7d933 100644
--- a/tools/testing/selftests/bpf/progs/test_global_func17.c
+++ b/tools/testing/selftests/bpf/progs/test_global_func17.c
@@ -1,6 +1,7 @@
// SPDX-License-Identifier: GPL-2.0-only
#include <vmlinux.h>
#include <bpf/bpf_helpers.h>
+#include "bpf_misc.h"
__noinline int foo(int *p)
{
@@ -10,7 +11,8 @@ __noinline int foo(int *p)
const volatile int i;
SEC("tc")
-int test_cls(struct __sk_buff *skb)
+__failure __msg("Caller passes invalid args into func#1")
+int global_func17(struct __sk_buff *skb)
{
return foo((int *)&i);
}