astyle formatting

This commit is contained in:
Daniel Marjamäki 2013-08-13 06:36:03 +02:00
parent ff71c94f6e
commit c58c9d80e1
1 changed files with 3 additions and 3 deletions

View File

@ -3863,11 +3863,11 @@ private:
// #ifdef A // #ifdef A
// a |= A; // <- using macro. must use -D so "A" will get a proper value // a |= A; // <- using macro. must use -D so "A" will get a proper value
errout.str(""); errout.str("");
Settings settings1; Settings settings1;
settings = settings1; settings = settings1;
ASSERT_EQUALS("", preprocessor.getcode("if (x) a|=A;", "A", "test.c")); ASSERT_EQUALS("", preprocessor.getcode("if (x) a|=A;", "A", "test.c"));
ASSERT_EQUALS("", errout.str()); ASSERT_EQUALS("", errout.str());
settings.addEnabled("information"); settings.addEnabled("information");
ASSERT_EQUALS("", preprocessor.getcode("if (x) a|=A;", "A", "test.c")); ASSERT_EQUALS("", preprocessor.getcode("if (x) a|=A;", "A", "test.c"));
ASSERT_EQUALS("[test.c:1]: (information) Skipping configuration 'A' since the value of 'A' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.\n", errout.str()); ASSERT_EQUALS("[test.c:1]: (information) Skipping configuration 'A' since the value of 'A' is unknown. Use -D if you want to check it. You can use -U to skip it explicitly.\n", errout.str());
} }