Files
rocm-systems/tests/unittests/core/gtests_main.cpp
T
Ammar ELWazir 8032adb64f Adding rocprofilerv2
Change-Id: Ic0cc280ba207d2b8f6ccae1cd4ac3184152fc1ad
2023-03-09 13:20:33 +00:00

10 lines
217 B
C++

#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();
}