Files
rocm-systems/tests/unittests/core/gtests_main.cpp
T

10 lines
217 B
C++
Raw Normal View History

2023-02-03 12:31:39 -06:00
#include <gtest/gtest.h>
// Entry Point for Gtests Infra
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
testing::FLAGS_gtest_death_test_style = "threadsafe";
return RUN_ALL_TESTS();
}