Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: d5adbfcd5f7bcc6fa58a41c5c5ada0e5c826ce2c authored by Linus Torvalds on 05 February 2017, 23:10:58 UTC
Linux 4.10-rc7
Tip revision: d5adbfc
arch-tests.c
#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
	{
		.desc = "Intel cqm nmi context read",
		.func = test__intel_cqm_count_nmi_context,
	},
	{
		.func = NULL,
	},

};
back to top