Contributors: 4
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Stanislav Fomichev |
72 |
64.86% |
3 |
50.00% |
Delyan Kratunov |
37 |
33.33% |
1 |
16.67% |
Daniel Müller |
1 |
0.90% |
1 |
16.67% |
Andrii Nakryiko |
1 |
0.90% |
1 |
16.67% |
Total |
111 |
|
6 |
|
// SPDX-License-Identifier: GPL-2.0
#include <test_progs.h>
#include <network_helpers.h>
void test_pkt_md_access(void)
{
const char *file = "./test_pkt_md_access.bpf.o";
struct bpf_object *obj;
int err, prog_fd;
LIBBPF_OPTS(bpf_test_run_opts, topts,
.data_in = &pkt_v4,
.data_size_in = sizeof(pkt_v4),
.repeat = 10,
);
err = bpf_prog_test_load(file, BPF_PROG_TYPE_SCHED_CLS, &obj, &prog_fd);
if (CHECK_FAIL(err))
return;
err = bpf_prog_test_run_opts(prog_fd, &topts);
ASSERT_OK(err, "test_run_opts err");
ASSERT_OK(topts.retval, "test_run_opts retval");
bpf_object__close(obj);
}