]> Git Repo - linux.git/blob - tools/testing/selftests/bpf/prog_tests/access_variable_array.c
Linux 6.14-rc3
[linux.git] / tools / testing / selftests / bpf / prog_tests / access_variable_array.c
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2022 Bytedance */
3
4 #include <test_progs.h>
5 #include "test_access_variable_array.skel.h"
6
7 void test_access_variable_array(void)
8 {
9         struct test_access_variable_array *skel;
10
11         skel = test_access_variable_array__open_and_load();
12         if (!ASSERT_OK_PTR(skel, "test_access_variable_array__open_and_load"))
13                 return;
14
15         test_access_variable_array__destroy(skel);
16 }
This page took 0.035131 seconds and 4 git commands to generate.