Hi,
gtest has a new feature GTEST_SKIP to dynamically skip tests (it's in master but no official release yet): google/googletest#1544
However GTA doesn't recognize this and will report such tests as crashed. Sample test:
TEST(Test, MyTest)
{
GTEST_SKIP();
}
Gives this output:
Message:
!! This test has probably CRASHED !!
Test output:
[ SKIPPED ] Test.MyTest (1 ms)
Hi,
gtest has a new feature
GTEST_SKIPto dynamically skip tests (it's in master but no official release yet): google/googletest#1544However GTA doesn't recognize this and will report such tests as crashed. Sample test:
Gives this output: