Path: blob/master/tools/perf/arch/x86/include/arch-tests.h
26299 views
/* SPDX-License-Identifier: GPL-2.0 */1#ifndef ARCH_TESTS_H2#define ARCH_TESTS_H34#include "tests/tests.h"56struct test_suite;78/* Tests */9int test__rdpmc(struct test_suite *test, int subtest);10#ifdef HAVE_EXTRA_TESTS11int test__insn_x86(struct test_suite *test, int subtest);12#endif13int test__intel_pt_pkt_decoder(struct test_suite *test, int subtest);14int test__intel_pt_hybrid_compat(struct test_suite *test, int subtest);15int test__bp_modify(struct test_suite *test, int subtest);16int test__amd_ibs_via_core_pmu(struct test_suite *test, int subtest);17int test__amd_ibs_period(struct test_suite *test, int subtest);18int test__hybrid(struct test_suite *test, int subtest);1920DECLARE_SUITE(x86_topdown);2122extern struct test_suite *arch_tests[];2324#endif252627