perf tests: Move x86 tests into arch directory
[cascardo/linux.git] / tools / perf / arch / x86 / tests / arch-tests.c
index fca9eb9..d116c21 100644 (file)
@@ -3,6 +3,26 @@
 #include "arch-tests.h"
 
 struct test arch_tests[] = {
+       {
+               .desc = "x86 rdpmc test",
+               .func = test__rdpmc,
+       },
+       {
+               .desc = "Test converting perf time to TSC",
+               .func = test__perf_time_to_tsc,
+       },
+#ifdef HAVE_DWARF_UNWIND_SUPPORT
+       {
+               .desc = "Test dwarf unwind",
+               .func = test__dwarf_unwind,
+       },
+#endif
+#ifdef HAVE_AUXTRACE_SUPPORT
+       {
+               .desc = "Test x86 instruction decoder - new instructions",
+               .func = test__insn_x86,
+       },
+#endif
        {
                .func = NULL,
        },