xref: /linux/tools/testing/selftests/bpf/prog_tests/xdpwall.c (revision 6331b8765cd0634a4e4cdcc1a6f1a74196616b94)
1 // SPDX-License-Identifier: GPL-2.0
2 /* Copyright (c) 2021 Facebook */
3 
4 #include "test_progs.h"
5 #include "xdpwall.skel.h"
6 
7 void test_xdpwall(void)
8 {
9 	struct xdpwall *skel;
10 
11 	skel = xdpwall__open_and_load();
12 	ASSERT_OK_PTR(skel, "Does LLMV have https://reviews.llvm.org/D109073?");
13 
14 	xdpwall__destroy(skel);
15 }
16