Added test case preprocessor_and_operation for ticket #55 (also fixed style from previous commit)

This commit is contained in:
Reijo Tomperi 2009-01-24 18:50:09 +00:00
parent a0886e693e
commit 98d7f02ebc
2 changed files with 19 additions and 2 deletions

View File

@ -89,7 +89,7 @@ private:
TEST_CASE(preprocessor_include_in_str);
// TODO TEST_CASE(fmt);
TEST_CASE(multi_character_character);
// TODO TEST_CASE(preprocessor_and_operation);
}
@ -651,6 +651,23 @@ private:
ASSERT_EQUALS("\nint main()\n{\nif( 'ABCD' == 0 );\nreturn 0;\n}\n", actual[""]);
}
void preprocessor_and_operation()
{
const char filedata[] = "#if (((EPL_MODULE_INTEGRATION) & (EPL_MODULE_VETH)) != 0)\n"
"#file \"kr.h\"\n"
"#if(((EPL_MODULE_INTEGRATION) & (EPL_MODULE_VETH)) != 0)\n"
"#endif\n"
"#endfile\n"
"#endif\n";
// Preprocess => actual result..
Preprocessor preprocessor;
std::string result = preprocessor.getcode(filedata, "");
// Compare results..
ASSERT_EQUALS("\n#file \"kr.h\"\n\n\n#endfile\n\n", result);
}
};