Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
openSUSE:Leap:16.0:Staging:B
subversion
fix-javahl-test.patch
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File fix-javahl-test.patch of Package subversion
--- a/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java.orig +++ b/subversion/bindings/javahl/tests/org/apache/subversion/javahl/BasicTests.java @@ -4744,7 +4744,19 @@ public class BasicTests extends SVNTests ex.printStackTrace(); } - tunnelAgent.joinAndTest(); + // In this test, there is a race condition that sometimes results in + // IOException when 'WAIT_TUNNEL' tries to read from a pipe that + // already has its read end closed. This is not an error, but + // it's hard to distinguish this case from other IOException which + // indicate a problem. To reproduce, simply wrap this test's body in + // a loop. The workaround is to ignore any detected IOException. + // + // tunnelAgent.joinAndTest(); + try { + tunnelAgent.join(); + } catch (InterruptedException e) { + e.printStackTrace (); + } } /**
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor