Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 04974df8049fc4240d22759a91e035082ccd18b4 authored by Linus Torvalds on 01 May 2016, 22:52:31 UTC
Linux 4.6-rc6
Tip revision: 04974df
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