You are viewing a plain text version of this content. The canonical link for it is here.
Posted to log4cxx-dev@logging.apache.org by ts...@apache.org on 2016/03/17 17:14:26 UTC

svn commit: r1735450 - /incubator/log4cxx/trunk/src/test/cpp/xml/domtestcase.cpp

Author: tschoening
Date: Thu Mar 17 16:14:25 2016
New Revision: 1735450

URL: http://svn.apache.org/viewvc?rev=1735450&view=rev
Log:
LOGCXX-400: Changes of comment 2 applied.

Modified:
    incubator/log4cxx/trunk/src/test/cpp/xml/domtestcase.cpp

Modified: incubator/log4cxx/trunk/src/test/cpp/xml/domtestcase.cpp
URL: http://svn.apache.org/viewvc/incubator/log4cxx/trunk/src/test/cpp/xml/domtestcase.cpp?rev=1735450&r1=1735449&r2=1735450&view=diff
==============================================================================
--- incubator/log4cxx/trunk/src/test/cpp/xml/domtestcase.cpp (original)
+++ incubator/log4cxx/trunk/src/test/cpp/xml/domtestcase.cpp Thu Mar 17 16:14:25 2016
@@ -53,7 +53,7 @@ LOGUNIT_CLASS(DOMTestCase)
                 LOGUNIT_TEST(test2);
 #endif
                 LOGUNIT_TEST(test3);
-                LOGUNIT_TEST(test4);                
+                LOGUNIT_TEST(test4);
         LOGUNIT_TEST_SUITE_END();
 
         LoggerPtr root;
@@ -181,18 +181,18 @@ public:
                 LOG4CXX_FATAL(root, "Message " << i);
 
         }
-      
+
         /**
          *   Creates a output file that ends with a superscript 3.
          *   Output file is checked by build.xml after completion.
-         */  
+         */
         void test3() {
                 DOMConfigurator::configure(LOG4CXX_TEST_STR("input/xml/DOMTestCase3.xml"));
                 LOG4CXX_INFO(logger, "File name is expected to end with a superscript 3");
 #if LOG4CXX_LOGCHAR_IS_UTF8
-                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, 0xC2, 0xB3, 0 };
+                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, static_cast<logchar>(0xC2), static_cast<logchar>(0xB3), 0 };
 #else
-                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, 0xB3, 0 };
+                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, static_cast<logchar>(0xB3), 0 };
 #endif
                 File file;
                 file.setPath(fname);
@@ -204,14 +204,14 @@ public:
         /**
          *   Creates a output file that ends with a ideographic 4.
          *   Output file is checked by build.xml after completion.
-         */  
+         */
         void test4() {
                 DOMConfigurator::configure(LOG4CXX_TEST_STR("input/xml/DOMTestCase4.xml"));
                 LOG4CXX_INFO(logger, "File name is expected to end with an ideographic 4");
 #if LOG4CXX_LOGCHAR_IS_UTF8
-                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, 0xE3, 0x86, 0x95, 0 };
+                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, static_cast<logchar>(0xE3), static_cast<logchar>(0x86), static_cast<logchar>(0x95), 0 };
 #else
-                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, 0x3195, 0 };
+                const logchar fname[] = { 0x6F, 0x75, 0x74, 0x70, 0x75, 0x74, 0x2F, 0x64, 0x6F, 0x6D, static_cast<logchar>(0x3195), 0 };
 #endif
                 File file;
                 file.setPath(fname);
@@ -219,7 +219,7 @@ public:
                 bool exists = file.exists(p);
                 LOGUNIT_ASSERT(exists);
         }
-        
+
 };
 
 LOGUNIT_TEST_SUITE_REGISTRATION(DOMTestCase);