This is an automated email from the ASF dual-hosted git repository. markt pushed a commit to branch 11.0.x in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/11.0.x by this push: new 9175502c3b Fix test on Windows. 9175502c3b is described below commit 9175502c3b2cd126ffaebefdf13834184ebacfb3 Author: Mark Thomas <ma...@apache.org> AuthorDate: Thu Dec 5 14:37:51 2024 +0000 Fix test on Windows. --- test/org/apache/catalina/valves/TestJDBCAccessLogValve.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/test/org/apache/catalina/valves/TestJDBCAccessLogValve.java b/test/org/apache/catalina/valves/TestJDBCAccessLogValve.java index d290f38cc2..689876fe94 100644 --- a/test/org/apache/catalina/valves/TestJDBCAccessLogValve.java +++ b/test/org/apache/catalina/valves/TestJDBCAccessLogValve.java @@ -33,6 +33,7 @@ import org.junit.runners.Parameterized; import org.junit.runners.Parameterized.Parameter; import org.apache.catalina.Context; +import org.apache.catalina.startup.SimpleHttpClient; import org.apache.catalina.startup.Tomcat; import org.apache.catalina.startup.TomcatBaseTest; import org.apache.tomcat.util.buf.ByteChunk; @@ -134,7 +135,11 @@ public class TestJDBCAccessLogValve extends TomcatBaseTest { Assert.assertTrue(rs.next()); Assert.assertEquals(HttpServletResponse.SC_OK, rs.getInt("status")); Assert.assertEquals("/test/index.html", rs.getString("query")); - Assert.assertTrue(rs.getLong("bytes") == 934); + if (System.lineSeparator().equals(SimpleHttpClient.CRLF)) { + Assert.assertEquals(957, rs.getLong("bytes")); + } else { + Assert.assertEquals(934, rs.getLong("bytes")); + } Assert.assertTrue(rs.next()); Assert.assertEquals(HttpServletResponse.SC_OK, rs.getInt("status")); Assert.assertEquals("/test/404.html", rs.getString("query")); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org