Files
icicle/icicle/tests/runner.cu
2024-01-08 17:31:46 +02:00

16 lines
410 B
Plaintext

#include <cuda_runtime.h>
#include <gtest/gtest.h>
#include <iostream>
// include list of test files
// Ensure the device_error_test.cu is last to prevent aborting mid-test run
#include "primitives_test.cu"
#include "error_handler_test.cu"
#include "device_error_test.cu"
int main(int argc, char** argv)
{
::testing::InitGoogleTest(&argc, argv);
printf("running gtests...\n");
return RUN_ALL_TESTS();
}