Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 
0003 #include <test_progs.h>
0004 
0005 #include "atomic_bounds.skel.h"
0006 
0007 void test_atomic_bounds(void)
0008 {
0009     struct atomic_bounds *skel;
0010     __u32 duration = 0;
0011 
0012     skel = atomic_bounds__open_and_load();
0013     if (CHECK(!skel, "skel_load", "couldn't load program\n"))
0014         return;
0015 
0016     atomic_bounds__destroy(skel);
0017 }