diff options
author | YiFei Zhu <zhuyifei@google.com> | 2020-09-16 02:45:43 +0300 |
---|---|---|
committer | Alexei Starovoitov <ast@kernel.org> | 2020-09-16 04:28:27 +0300 |
commit | d42d1cc44d702123d6ff12ce54a0e854036d29cb (patch) | |
tree | d4cb7f11dd9c6d75bd829770ffdf9dcc68203f67 /tools/testing/selftests/bpf/Makefile | |
parent | aff52e685eb39984f3a613e8a5c570d97e5d2414 (diff) | |
download | linux-d42d1cc44d702123d6ff12ce54a0e854036d29cb.tar.xz |
selftests/bpf: Test load and dump metadata with btftool and skel
This is a simple test to check that loading and dumping metadata
in btftool works, whether or not metadata contents are used by the
program.
A C test is also added to make sure the skeleton code can read the
metadata values.
Signed-off-by: YiFei Zhu <zhuyifei@google.com>
Signed-off-by: Stanislav Fomichev <sdf@google.com>
Signed-off-by: Alexei Starovoitov <ast@kernel.org>
Acked-by: Andrii Nakryiko <andriin@fb.com>
Cc: YiFei Zhu <zhuyifei1999@gmail.com>
Link: https://lore.kernel.org/bpf/20200915234543.3220146-6-sdf@google.com
Diffstat (limited to 'tools/testing/selftests/bpf/Makefile')
-rw-r--r-- | tools/testing/selftests/bpf/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/testing/selftests/bpf/Makefile b/tools/testing/selftests/bpf/Makefile index 05798c2b5c67..2a63791177c4 100644 --- a/tools/testing/selftests/bpf/Makefile +++ b/tools/testing/selftests/bpf/Makefile @@ -68,7 +68,8 @@ TEST_PROGS := test_kmod.sh \ test_tc_edt.sh \ test_xdping.sh \ test_bpftool_build.sh \ - test_bpftool.sh + test_bpftool.sh \ + test_bpftool_metadata.sh \ TEST_PROGS_EXTENDED := with_addr.sh \ with_tunnels.sh \ |