mirror of
https://github.com/catchorg/Catch2.git
synced 2024-11-22 21:36:11 +01:00
Added non-copyable test to [failing] set
This commit is contained in:
parent
b8f482b9aa
commit
632e023ff4
@ -7433,7 +7433,7 @@ loose text artifact
|
|||||||
</Expression>
|
</Expression>
|
||||||
<OverallResult success="true"/>
|
<OverallResult success="true"/>
|
||||||
</TestCase>
|
</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" >
|
<Expression success="true" type="CHECK" filename="projects/<exe-name>/TrickyTests.cpp" >
|
||||||
<Original>
|
<Original>
|
||||||
ti == typeid(int)
|
ti == typeid(int)
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -436,7 +436,7 @@ TEST_CASE( "null deref", "[.][failing][!nonportable]" ) {
|
|||||||
*x = 1;
|
*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
|
// Thanks to Agustin Bergé (@k-ballo on the cpplang Slack) for raising this
|
||||||
std::type_info const& ti = typeid(int);
|
std::type_info const& ti = typeid(int);
|
||||||
CHECK( ti == typeid(int) );
|
CHECK( ti == typeid(int) );
|
||||||
|
Loading…
Reference in New Issue
Block a user