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 (338B)


      1// SPDX-License-Identifier: GPL-2.0-or-later
      2#include "tests/basic_api.h"
      3#include "tests/alloc_api.h"
      4#include "tests/alloc_helpers_api.h"
      5#include "tests/alloc_nid_api.h"
      6
      7int main(int argc, char **argv)
      8{
      9	memblock_basic_checks();
     10	memblock_alloc_checks();
     11	memblock_alloc_helpers_checks();
     12	memblock_alloc_nid_checks();
     13
     14	return 0;
     15}