Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /* Copyright (c) 2021 Facebook */
0003 
0004 #include "test_progs.h"
0005 #include "xdpwall.skel.h"
0006 
0007 void test_xdpwall(void)
0008 {
0009     struct xdpwall *skel;
0010 
0011     skel = xdpwall__open_and_load();
0012     ASSERT_OK_PTR(skel, "Does LLMV have https://reviews.llvm.org/D109073?");
0013 
0014     xdpwall__destroy(skel);
0015 }