Contributors: 6
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Matt Fleming |
66 |
57.89% |
2 |
28.57% |
| Jiri Olsa |
20 |
17.54% |
1 |
14.29% |
| Adrian Hunter |
12 |
10.53% |
1 |
14.29% |
| Kan Liang |
12 |
10.53% |
1 |
14.29% |
| Arnaldo Carvalho de Melo |
3 |
2.63% |
1 |
14.29% |
| Greg Kroah-Hartman |
1 |
0.88% |
1 |
14.29% |
| Total |
114 |
|
7 |
|
// 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,
},
#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,
},
{
.desc = "Intel PT packet decoder",
.func = test__intel_pt_pkt_decoder,
},
#endif
#if defined(__x86_64__)
{
.desc = "x86 bp modify",
.func = test__bp_modify,
},
#endif
{
.desc = "x86 Sample parsing",
.func = test__x86_sample_parsing,
},
{
.func = NULL,
},
};