2024-07-12 22:29:04 +08:00
|
|
|
// This file will be compiled like a real C++ program,
|
|
|
|
// and we do have the luxury to use the standard libraries.
|
|
|
|
// That is if the nix flakes do not have issues... especially on msys2...
|
|
|
|
#include <cstdint>
|
|
|
|
#include <cstdio>
|
|
|
|
#include <cstdlib>
|
|
|
|
|
|
|
|
#include "irrt_everything.hpp"
|
|
|
|
|
|
|
|
#include "test/core.hpp"
|
|
|
|
#include "test/test_core.hpp"
|
2024-07-13 23:58:29 +08:00
|
|
|
#include "test/test_utils.hpp"
|
2024-07-12 22:29:04 +08:00
|
|
|
|
|
|
|
int main() {
|
2024-07-13 23:58:29 +08:00
|
|
|
run_test_core();
|
|
|
|
run_test_print();
|
|
|
|
run_test_utils();
|
2024-07-12 22:29:04 +08:00
|
|
|
return 0;
|
|
|
|
}
|