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

11 lines
263 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";
//testing::GTEST_FLAG(filter)="-HSATest.*";
return RUN_ALL_TESTS();
}