]> Git Repo - J-linux.git/blob - tools/testing/selftests/bpf/prog_tests/tcp_estats.c
Merge tag 'vfs-6.13-rc7.fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
[J-linux.git] / tools / testing / selftests / bpf / prog_tests / tcp_estats.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <test_progs.h>
3
4 void test_tcp_estats(void)
5 {
6         const char *file = "./test_tcp_estats.bpf.o";
7         int err, prog_fd;
8         struct bpf_object *obj;
9
10         err = bpf_prog_test_load(file, BPF_PROG_TYPE_TRACEPOINT, &obj, &prog_fd);
11         if (!ASSERT_OK(err, ""))
12                 return;
13
14         bpf_object__close(obj);
15 }
This page took 0.027106 seconds and 4 git commands to generate.