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

main.c (361B)


      1// SPDX-License-Identifier: GPL-2.0
      2#include <internal/tests.h>
      3#include "tests.h"
      4
      5int tests_failed;
      6int tests_verbose;
      7
      8int main(int argc, char **argv)
      9{
     10	__T("test cpumap", !test_cpumap(argc, argv));
     11	__T("test threadmap", !test_threadmap(argc, argv));
     12	__T("test evlist", !test_evlist(argc, argv));
     13	__T("test evsel", !test_evsel(argc, argv));
     14	return 0;
     15}