1#ifndef ARCH_TESTS_H 2#define ARCH_TESTS_H 3 4/* Tests */ 5int test__rdpmc(int subtest); 6int test__perf_time_to_tsc(int subtest); 7int test__insn_x86(int subtest); 8int test__intel_cqm_count_nmi_context(int subtest); 9 10#ifdef HAVE_DWARF_UNWIND_SUPPORT 11struct thread; 12struct perf_sample; 13int test__arch_unwind_sample(struct perf_sample *sample, 14 struct thread *thread); 15#endif 16 17extern struct test arch_tests[]; 18 19#endif 20