mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-26 22:43:09 +07:00
15bcdc9477
Conflicts: tools/perf/arch/arm/annotate/instructions.c tools/perf/arch/arm64/annotate/instructions.c tools/perf/arch/powerpc/annotate/instructions.c tools/perf/arch/s390/annotate/instructions.c tools/perf/arch/x86/tests/intel-cqm.c tools/perf/ui/tui/progress.c tools/perf/util/zlib.c Signed-off-by: Ingo Molnar <mingo@kernel.org>
32 lines
522 B
C
32 lines
522 B
C
// SPDX-License-Identifier: GPL-2.0
|
|
#include <string.h>
|
|
#include "tests/tests.h"
|
|
#include "arch-tests.h"
|
|
|
|
struct test arch_tests[] = {
|
|
{
|
|
.desc = "x86 rdpmc",
|
|
.func = test__rdpmc,
|
|
},
|
|
{
|
|
.desc = "Convert perf time to TSC",
|
|
.func = test__perf_time_to_tsc,
|
|
},
|
|
#ifdef HAVE_DWARF_UNWIND_SUPPORT
|
|
{
|
|
.desc = "DWARF unwind",
|
|
.func = test__dwarf_unwind,
|
|
},
|
|
#endif
|
|
#ifdef HAVE_AUXTRACE_SUPPORT
|
|
{
|
|
.desc = "x86 instruction decoder - new instructions",
|
|
.func = test__insn_x86,
|
|
},
|
|
#endif
|
|
{
|
|
.func = NULL,
|
|
},
|
|
|
|
};
|