Added non-copyable test to [failing] set

This commit is contained in:
Phil Nash 2017-08-17 16:55:35 +01:00
parent b8f482b9aa
commit 632e023ff4
3 changed files with 2 additions and 8295 deletions

View File

@ -7433,7 +7433,7 @@ loose text artifact
</Expression>
<OverallResult success="true"/>
</TestCase>
<TestCase name="non-copyable objects" filename="projects/<exe-name>/TrickyTests.cpp" >
<TestCase name="non-copyable objects" tags="[.][hide]" filename="projects/<exe-name>/TrickyTests.cpp" >
<Expression success="true" type="CHECK" filename="projects/<exe-name>/TrickyTests.cpp" >
<Original>
ti == typeid(int)

File diff suppressed because it is too large Load Diff

View File

@ -436,7 +436,7 @@ TEST_CASE( "null deref", "[.][failing][!nonportable]" ) {
*x = 1;
}
TEST_CASE( "non-copyable objects", "[.]" ) {
TEST_CASE( "non-copyable objects", "[.][failing]" ) {
// Thanks to Agustin Bergé (@k-ballo on the cpplang Slack) for raising this
std::type_info const& ti = typeid(int);
CHECK( ti == typeid(int) );