Author: rgoers
Date: Wed Apr 3 18:33:44 2013
New Revision: 1464146
URL: http://svn.apache.org/r1464146
Log:
LOG4J2-194 - ThrowableFormatOptionsTest failed on Windows due to CR/LF issue.
Modified:
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/core/impl/ThrowableFormatOptionsTest.java
logging/log4j/log4j2/trunk/src/changes/changes.xml
Modified:
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/core/impl/ThrowableFormatOptionsTest.java
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/core/impl/ThrowableFormatOptionsTest.java?rev=1464146&r1=1464145&r2=1464146&view=diff
==============================================================================
---
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/core/impl/ThrowableFormatOptionsTest.java
(original)
+++
logging/log4j/log4j2/trunk/core/src/test/java/org/apache/logging/log4j/core/impl/ThrowableFormatOptionsTest.java
Wed Apr 3 18:33:44 2013
@@ -137,7 +137,7 @@ public final class ThrowableFormatOption
*/
@Test
public void testSeparatorAsDefaultLineSeparator() {
- test(new String[]{"separator(\n)"}, Integer.MAX_VALUE,
Constants.LINE_SEP, null);
+ test(new String[]{"separator(" + Constants.LINE_SEP + ")"},
Integer.MAX_VALUE, Constants.LINE_SEP, null);
}
/**
Modified: logging/log4j/log4j2/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/src/changes/changes.xml?rev=1464146&r1=1464145&r2=1464146&view=diff
==============================================================================
--- logging/log4j/log4j2/trunk/src/changes/changes.xml (original)
+++ logging/log4j/log4j2/trunk/src/changes/changes.xml Wed Apr 3 18:33:44 2013
@@ -23,6 +23,9 @@
<body>
<release version="2.0-beta5" date="@TBD@" description="Bug fixes and
enhancements">
+ <action issue="LOG4J2-194" dev="rgoers" type="fix" due-to="Remko Popma">
+ ThrowableFormatOptionsTest failed on Windows due to CR/LF issue.
+ </action>
<action issue="LOG4J2-190" dev="rgoers" type="fix" due-to="Werner">
BaseConfiguration addLoggerAppender saved appender using the Logger
name.
</action>