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()
{
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;"));
{
@ -135,7 +135,7 @@ private:
"}\n";
const char expected[] = "static void crash ( ) "
"{ foo ( ) ; }";
"{ foo ( ) ; return ; foo ( ) ; }";
ASSERT_EQUALS(expected, tok(code));
}
@ -1260,12 +1260,12 @@ private:
"if ( a ( ) ) "
"{ "
"if ( c ( ) ) "
"d ( ) ; "
"{ d ( ) ; } "
"return ; "
"} "
"b ( ) ; "
"if ( c ( ) ) "
"d ( ) ; "
"{ d ( ) ; } "
"}";
ASSERT_EQUALS(expect, tok(code));