]> Git Repo - linux.git/blob - tools/testing/selftests/bpf/prog_tests/atomic_bounds.c
Merge patch series "riscv: Extension parsing fixes"
[linux.git] / tools / testing / selftests / bpf / prog_tests / atomic_bounds.c
1 // SPDX-License-Identifier: GPL-2.0
2
3 #include <test_progs.h>
4
5 #include "atomic_bounds.skel.h"
6
7 void test_atomic_bounds(void)
8 {
9         struct atomic_bounds *skel;
10         __u32 duration = 0;
11
12         skel = atomic_bounds__open_and_load();
13         if (CHECK(!skel, "skel_load", "couldn't load program\n"))
14                 return;
15
16         atomic_bounds__destroy(skel);
17 }
This page took 0.032311 seconds and 4 git commands to generate.