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

@ -29,7 +29,8 @@ namespace Catch {
IsHidden = 1 << 1,
ShouldFail = 1 << 2,
MayFail = 1 << 3,
Throws = 1 << 4
Throws = 1 << 4,
NonPortable = 1 << 5
};
TestCaseInfo( std::string const& _name,