Bug 319178 test failure fix in jetty-util on windows

git-svn-id: svn+ssh://dev.eclipse.org/svnroot/rt/org.eclipse.jetty/jetty/trunk@2656 7e9141cc-0065-0410-87d8-b60c137991c4
This commit is contained in:
Jesse McConnell 2011-01-12 21:31:58 +00:00
parent bcde60bd2f
commit 12df3737f6
2 changed files with 4 additions and 0 deletions

View File

@ -1,6 +1,7 @@
jetty-7.3.0-SNAPSHOT
+ JETTY-1259 NullPointerException in JDBCSessionIdManager when invalidating session (further update)
+ 319178 test failure fix in jetty-util on windows
+ 320457 add SPNEGO support
+ 324505 Implement API login
+ 328872 Multi Jetty xml files not loading if directory is referenced in jetty.conf

View File

@ -62,6 +62,9 @@ public class LogTest
String err = _out.toString();
_out.reset();
err = err.replaceAll("\r\n","\n");
text = text.replaceAll("\r\n","\n");
if (err.indexOf(text)>=0)
return;