carnold 2005/02/10 18:43:08
Modified: tests/src/xml domtestcase.cpp
Log:
LOGCXX-22: Backslashes in filenames in XML mistreated
Revision Changes Path
1.12 +0 -10 logging-log4cxx/tests/src/xml/domtestcase.cpp
Index: domtestcase.cpp
===================================================================
RCS file: /home/cvs/logging-log4cxx/tests/src/xml/domtestcase.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- domtestcase.cpp 11 Feb 2005 01:51:48 -0000 1.11
+++ domtestcase.cpp 11 Feb 2005 02:43:08 -0000 1.12
@@ -58,7 +58,6 @@
#if defined(_WIN32)
CPPUNIT_TEST(test2);
#endif
- CPPUNIT_TEST(test3);
CPPUNIT_TEST_SUITE_END();
LoggerPtr root;
@@ -161,15 +160,6 @@
CPPUNIT_ASSERT(Compare::compare(FILTERED_A2, witness2));
}
- void test3() {
-
DOMConfigurator::configure(LOG4CXX_STR("input/xml/DOMTestCase3.xml"));
- LoggerPtr root(Logger::getRootLogger());
- FileAppenderPtr
appender(root->getAppender(LOG4CXX_STR("A1")));
- File file(appender->getFile());
- std::string osname(file.getOSName());
- CPPUNIT_ASSERT_EQUAL((std::string) "e:\\tmp\\temp.A1",
osname);
- }
-
void common()
{