test: Fix preprocessor code in test data

This is not valid preprocessor code: #ifdef A == 1

Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
Stefan Weil 2012-03-01 20:24:00 +01:00 committed by Daniel Marjamäki
parent cbfd1349b3
commit f079ee7c31
1 changed files with 1 additions and 1 deletions

View File

@ -621,7 +621,7 @@ private:
}
void test8() {
const char filedata[] = "#ifdef A == 1\n"
const char filedata[] = "#if A == 1\n"
"1\n"
"#endif\n";