Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 #ifndef ARCH_TESTS_H
0003 #define ARCH_TESTS_H
0004 
0005 struct test_suite;
0006 
0007 /* Tests */
0008 int test__rdpmc(struct test_suite *test, int subtest);
0009 int test__insn_x86(struct test_suite *test, int subtest);
0010 int test__intel_pt_pkt_decoder(struct test_suite *test, int subtest);
0011 int test__bp_modify(struct test_suite *test, int subtest);
0012 int test__x86_sample_parsing(struct test_suite *test, int subtest);
0013 
0014 extern struct test_suite *arch_tests[];
0015 
0016 #endif