blob: a21aa9dafef7da0ef4b6f9e3d70cf25009f6f8b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#include <kapi/cio.hpp>
#include <kapi/cpu.hpp>
#include <catch2/catch_session.hpp>
auto main(int argc, char ** argv) -> int
{
kapi::cio::init();
kapi::cpu::init();
return Catch::Session().run(argc, argv);
}
|