fixed failed assertions when running the testrunner

This commit is contained in:
Daniel Marjamki 2009-08-28 17:05:25 +02:00
parent 4f6b79b761
commit cbc237c37b
1 changed files with 4 additions and 4 deletions

View File

@ -123,7 +123,7 @@ private:
void cast() void cast()
{ {
ASSERT_EQUALS("if ( p == 0 )", tok("if (p == (char *)0)")); ASSERT_EQUALS("if ( ! p )", tok("if (p == (char *)0)"));
ASSERT_EQUALS("return str ;", tok("return (char *)str;")); ASSERT_EQUALS("return str ;", tok("return (char *)str;"));
{ {
@ -135,7 +135,7 @@ private:
"}\n"; "}\n";
const char expected[] = "static void crash ( ) " const char expected[] = "static void crash ( ) "
"{ foo ( ) ; }"; "{ foo ( ) ; return ; foo ( ) ; }";
ASSERT_EQUALS(expected, tok(code)); ASSERT_EQUALS(expected, tok(code));
} }
@ -1260,12 +1260,12 @@ private:
"if ( a ( ) ) " "if ( a ( ) ) "
"{ " "{ "
"if ( c ( ) ) " "if ( c ( ) ) "
"d ( ) ; " "{ d ( ) ; } "
"return ; " "return ; "
"} " "} "
"b ( ) ; " "b ( ) ; "
"if ( c ( ) ) " "if ( c ( ) ) "
"d ( ) ; " "{ d ( ) ; } "
"}"; "}";
ASSERT_EQUALS(expect, tok(code)); ASSERT_EQUALS(expect, tok(code));