Merge tag 'block-5.9-2020-08-14' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / tools / perf / arch / x86 / tests / arch-tests.c
blob6763135aec17b2712199d3573d111bf364a9df50
1 // SPDX-License-Identifier: GPL-2.0
2 #include <string.h>
3 #include "tests/tests.h"
4 #include "arch-tests.h"
6 struct test arch_tests[] = {
8 .desc = "x86 rdpmc",
9 .func = test__rdpmc,
12 .desc = "Convert perf time to TSC",
13 .func = test__perf_time_to_tsc,
15 #ifdef HAVE_DWARF_UNWIND_SUPPORT
17 .desc = "DWARF unwind",
18 .func = test__dwarf_unwind,
20 #endif
21 #ifdef HAVE_AUXTRACE_SUPPORT
23 .desc = "x86 instruction decoder - new instructions",
24 .func = test__insn_x86,
27 .desc = "Intel PT packet decoder",
28 .func = test__intel_pt_pkt_decoder,
30 #endif
31 #if defined(__x86_64__)
33 .desc = "x86 bp modify",
34 .func = test__bp_modify,
36 #endif
38 .func = NULL,