Author: carnold
Date: Tue Nov 13 09:21:58 2007
New Revision: 594589
URL: http://svn.apache.org/viewvc?rev=594589&view=rev
Log:
LOGCXX-204: Disable problematic tests when using VC6
Modified:
logging/log4cxx/trunk/src/test/cpp/pattern/patternparsertestcase.cpp
logging/log4cxx/trunk/src/test/cpp/rolling/filenamepatterntestcase.cpp
Modified: logging/log4cxx/trunk/src/test/cpp/pattern/patternparsertestcase.cpp
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/test/cpp/pattern/patternparsertestcase.cpp?rev=594589&r1=594588&r2=594589&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/test/cpp/pattern/patternparsertestcase.cpp
(original)
+++ logging/log4cxx/trunk/src/test/cpp/pattern/patternparsertestcase.cpp Tue
Nov 13 09:21:58 2007
@@ -240,4 +240,9 @@
};
+//
+// See bug LOGCXX-204
+//
+#if !defined(_MSC_VER) || _MSC_VER > 1200
CPPUNIT_TEST_SUITE_REGISTRATION(PatternParserTestCase);
+#endif
Modified: logging/log4cxx/trunk/src/test/cpp/rolling/filenamepatterntestcase.cpp
URL:
http://svn.apache.org/viewvc/logging/log4cxx/trunk/src/test/cpp/rolling/filenamepatterntestcase.cpp?rev=594589&r1=594588&r2=594589&view=diff
==============================================================================
--- logging/log4cxx/trunk/src/test/cpp/rolling/filenamepatterntestcase.cpp
(original)
+++ logging/log4cxx/trunk/src/test/cpp/rolling/filenamepatterntestcase.cpp Tue
Nov 13 09:21:58 2007
@@ -183,4 +183,9 @@
};
+//
+// See bug LOGCXX-204
+//
+#if !defined(_MSC_VER) || _MSC_VER > 1200
CPPUNIT_TEST_SUITE_REGISTRATION(FileNamePatternTestCase);
+#endif
\ No newline at end of file