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