Staging
v0.8.1
swh:1:snp:a902887e4be9191b7c6c4406aa06b31c1ce2c7cc
Raw File
Tip revision: 694d0d0bb2030d2e36df73e2d23d5770511dbc8d authored by Linus Torvalds on 15 August 2016, 02:11:36 UTC
Linux 4.8-rc2
Tip revision: 694d0d0
arch-tests.c
#include <string.h>
#include "tests/tests.h"
#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
	{
		.desc = "Test intel cqm nmi context read",
		.func = test__intel_cqm_count_nmi_context,
	},
	{
		.func = NULL,
	},

};
back to top