diff --git a/testpreprocessor.cpp b/testpreprocessor.cpp index ea7097bb1..46ddecb44 100644 --- a/testpreprocessor.cpp +++ b/testpreprocessor.cpp @@ -399,10 +399,11 @@ private: void multiline() { const char filedata[] = "#define str \"abc\" \\ \n" - " \"def\"\n"; + " \"def\" \\ \n" + " \"ghi\" \n"; std::map expected; - expected[""] = "#define str \"abc\" \"def\"\n\n"; + expected[""] = "#define str \"abc\" \"def\" \"ghi\"\n\n\n"; // Preprocess => actual result.. std::istringstream istr(filedata);