cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

arch-tests.h (473B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef ARCH_TESTS_H
      3#define ARCH_TESTS_H
      4
      5struct test_suite;
      6
      7/* Tests */
      8int test__rdpmc(struct test_suite *test, int subtest);
      9int test__insn_x86(struct test_suite *test, int subtest);
     10int test__intel_pt_pkt_decoder(struct test_suite *test, int subtest);
     11int test__bp_modify(struct test_suite *test, int subtest);
     12int test__x86_sample_parsing(struct test_suite *test, int subtest);
     13
     14extern struct test_suite *arch_tests[];
     15
     16#endif