xref: /linux/tools/perf/arch/x86/include/arch-tests.h (revision 6beeaf48db6c548fcfc2ad32739d33af2fef3a5b)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef ARCH_TESTS_H
3 #define ARCH_TESTS_H
4 
5 struct test;
6 
7 /* Tests */
8 int test__rdpmc(struct test *test, int subtest);
9 int test__insn_x86(struct test *test, int subtest);
10 int test__intel_pt_pkt_decoder(struct test *test, int subtest);
11 int test__bp_modify(struct test *test, int subtest);
12 int test__x86_sample_parsing(struct test *test, int subtest);
13 
14 extern struct test arch_tests[];
15 
16 #endif
17