forked from M-Labs/nac3
1
0
Fork 0
nac3/nac3core/irrt/irrt_test.cpp

25 lines
698 B
C++
Raw Permalink Normal View History

// 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...
2024-08-13 17:00:48 +08:00
#include <cstdint>
#include <cstdio>
#include <cstdlib>
2024-08-13 17:00:48 +08:00
// Special macro to inform `#include <irrt/*>` that we are testing.
#define IRRT_TESTING
// Note that failure unit tests are not supported.
#include <test/test_core.hpp>
2024-08-13 17:00:48 +08:00
#include <test/test_ndarray_basic.hpp>
#include <test/test_ndarray_broadcast.hpp>
#include <test/test_ndarray_indexing.hpp>
int main() {
test::core::run();
2024-08-13 17:00:48 +08:00
test::ndarray_basic::run();
test::ndarray_indexing::run();
test::ndarray_broadcast::run();
return 0;
}