Skip to content

Add support for GTEST_SKIP #260

Description

@sixten-hilborn

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)

Metadata

Metadata

Assignees

Projects

No projects

Milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions