|
Relates :
|
javax/management/remote/mandatory/connection/RMIConnector_NPETest.java fails on all platforms:
JavaTest Message: Test threw exception: TestFailedException: TEST FAILED: Failed to start rmid, giving up after 159ms.
The reason is that it calls RMID.start() using a timeout period of Long.MAX_VALUE, which causes the deadline timestamp to overflow and wrap around to negative. As a result, the first check against the timestamp seems to indicate a timeout and so the test fails.
|