Author: markt
Date: Tue Aug 11 20:52:33 2015
New Revision: 1695376
URL: http://svn.apache.org/r1695376
Log:
Temp fix so test fails rather than errors. Hopefully Gump will then show us the
debug logs.
Modified:
tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_5_3.java
Modified: tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_5_3.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_5_3.java?rev=1695376&r1=1695375&r2=1695376&view=diff
==============================================================================
--- tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_5_3.java
(original)
+++ tomcat/trunk/test/org/apache/coyote/http2/TestHttp2Section_5_3.java Tue Aug
11 20:52:33 2015
@@ -118,7 +118,12 @@ public class TestHttp2Section_5_3 extend
parser.readFrame(true);
// Debugging Gump failure
System.err.println(output.getTrace());
- parser.readFrame(true);
+ // Temp try block to help gump log
+ try {
+ parser.readFrame(true);
+ } catch (Throwable t) {
+ Assert.fail(t.getMessage());
+ }
// Debugging Gump failure
System.err.println(output.getTrace());
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]