Added [!nonportable] tag

This commit is contained in:
Phil Nash 2017-01-23 17:44:55 +00:00
parent f347611403
commit 31c23b9489
3 changed files with 6 additions and 1 deletions

View file

@ -26,6 +26,8 @@ namespace Catch {
return TestCaseInfo::ShouldFail;
else if( tag == "!mayfail" )
return TestCaseInfo::MayFail;
else if( tag == "!nonportable" )
return TestCaseInfo::NonPortable;
else
return TestCaseInfo::None;
}