From: Vadim Zeitlin Date: Sun, 27 Feb 2011 18:36:55 +0000 (+0000) Subject: Use single quotes in wxMarkupText unit test to work around VC6 bug. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/d44bc7333a3d4cbb4a37ba6cdb02cb6b637e44ed Use single quotes in wxMarkupText unit test to work around VC6 bug. VC6 seems to have a strange bug with escaped quotes used in strings passed to macros and failed to compile the original code with nonsensical error messages. Use single quotes to try to work around this issue. They are also somewhat more readable as they don't need to be escaped inside C strings. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@67077 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/tests/controls/markuptest.cpp b/tests/controls/markuptest.cpp index 3ebc3142ae..c38bc2575c 100644 --- a/tests/controls/markuptest.cpp +++ b/tests/controls/markuptest.cpp @@ -86,13 +86,13 @@ void MarkupTestCase::RoundTrip() m_text << "bar" ); CHECK_PARSES_OK( "123456" ); - CHECK_PARSES_OK( "first second last" ); - CHECK_PARSES_OK( "first second last" ); - CHECK_PARSES_OK( "10pt" ); - CHECK_PARSES_OK( "much smaller" ); - CHECK_PARSES_OK( "larger" ); + CHECK_PARSES_OK( "first second last" ); + CHECK_PARSES_OK( "first second last" ); + CHECK_PARSES_OK( "10pt" ); + CHECK_PARSES_OK( "much smaller" ); + CHECK_PARSES_OK( "larger" ); CHECK_PARSES_OK ( - "Please notice: any " - "bugs in this code are NOT allowed." + "Please notice: any " + "bugs in this code are NOT allowed." ); CHECK_PARSES_OK( "foo&bar" ); @@ -208,12 +208,12 @@ void MarkupTestCase::Strip() CHECK_STRIP( "foo", "foo" ); CHECK_STRIP( "<foo>", "" ); CHECK_STRIP( "Big problem", "Big problem" ); - CHECK_STRIP( "c" - "o" - "l" - "o" - "u" - "r", + CHECK_STRIP( "c" + "o" + "l" + "o" + "u" + "r", "colour" ); #undef CHECK_STRIP