Removed complex expression tests (they shouldn't compile now)

This commit is contained in:
Phil Nash 2011-03-11 19:46:18 +00:00
parent f35e0cbc6a
commit b826243956

View File

@ -41,8 +41,8 @@ TEST_CASE
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
TEST_CASE TEST_CASE
( (
"./inprogress/failing/Tricky/complex lhs", "./inprogress/failing/Tricky/trailing expression",
"Where the LHS is not a simple value" "Where the is more to the expression after the RHS"
) )
{ {
/* /*
@ -52,11 +52,12 @@ TEST_CASE
// This only captures part of the expression, but issues a warning about the rest // This only captures part of the expression, but issues a warning about the rest
REQUIRE( a == 2 || b == 2 ); REQUIRE( a == 2 || b == 2 );
*/ */
WARN( "Uncomment the code in this test to check that it gives a sensible compiler error" );
} }
/////////////////////////////////////////////////////////////////////////////// ///////////////////////////////////////////////////////////////////////////////
TEST_CASE TEST_CASE
( (
"./inprogress/failing/Tricky/complex 2", "./inprogress/failing/Tricky/compound lhs",
"Where the LHS is not a simple value" "Where the LHS is not a simple value"
) )
{ {
@ -67,6 +68,7 @@ TEST_CASE
// This only captures part of the expression, but issues a warning about the rest // This only captures part of the expression, but issues a warning about the rest
REQUIRE( a+1 == b-1 ); REQUIRE( a+1 == b-1 );
*/ */
WARN( "Uncomment the code in this test to check that it gives a sensible compiler error" );
} }
struct Opaque struct Opaque