Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1#ifndef PERF_TEST_LLVM_H
2#define PERF_TEST_LLVM_H
3
4#include <stddef.h> /* for size_t */
5#include <stdbool.h> /* for bool */
6
7extern const char test_llvm__bpf_base_prog[];
8extern const char test_llvm__bpf_test_kbuild_prog[];
9
10enum test_llvm__testcase {
11 LLVM_TESTCASE_BASE,
12 LLVM_TESTCASE_KBUILD,
13 __LLVM_TESTCASE_MAX,
14};
15
16int test_llvm__fetch_bpf_obj(void **p_obj_buf, size_t *p_obj_buf_sz,
17 enum test_llvm__testcase index, bool force);
18#endif