~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/tools/perf/arch/x86/tests/arch-tests.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 // SPDX-License-Identifier: GPL-2.0
  2 #include <string.h>
  3 #include "tests/tests.h"
  4 #include "arch-tests.h"
  5 
  6 #ifdef HAVE_AUXTRACE_SUPPORT
  7 #ifdef HAVE_EXTRA_TESTS
  8 DEFINE_SUITE("x86 instruction decoder - new instructions", insn_x86);
  9 #endif
 10 
 11 static struct test_case intel_pt_tests[] = {
 12         TEST_CASE("Intel PT packet decoder", intel_pt_pkt_decoder),
 13         TEST_CASE("Intel PT hybrid CPU compatibility", intel_pt_hybrid_compat),
 14         { .name = NULL, }
 15 };
 16 
 17 struct test_suite suite__intel_pt = {
 18         .desc = "Intel PT",
 19         .test_cases = intel_pt_tests,
 20 };
 21 
 22 #endif
 23 #if defined(__x86_64__)
 24 DEFINE_SUITE("x86 bp modify", bp_modify);
 25 #endif
 26 DEFINE_SUITE("x86 Sample parsing", x86_sample_parsing);
 27 DEFINE_SUITE("AMD IBS via core pmu", amd_ibs_via_core_pmu);
 28 static struct test_case hybrid_tests[] = {
 29         TEST_CASE_REASON("x86 hybrid event parsing", hybrid, "not hybrid"),
 30         { .name = NULL, }
 31 };
 32 
 33 struct test_suite suite__hybrid = {
 34         .desc = "x86 hybrid",
 35         .test_cases = hybrid_tests,
 36 };
 37 
 38 struct test_suite *arch_tests[] = {
 39 #ifdef HAVE_DWARF_UNWIND_SUPPORT
 40         &suite__dwarf_unwind,
 41 #endif
 42 #ifdef HAVE_AUXTRACE_SUPPORT
 43 #ifdef HAVE_EXTRA_TESTS
 44         &suite__insn_x86,
 45 #endif
 46         &suite__intel_pt,
 47 #endif
 48 #if defined(__x86_64__)
 49         &suite__bp_modify,
 50 #endif
 51         &suite__x86_sample_parsing,
 52         &suite__amd_ibs_via_core_pmu,
 53         &suite__hybrid,
 54         NULL,
 55 };
 56 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php