mirror of
https://github.com/pseXperiments/icicle.git
synced 2026-01-07 22:53:56 -05:00
16 lines
410 B
Plaintext
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();
|
|
} |