Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

8343491: javax/management/remote/mandatory/connection/DeadLockTest.java failing with NoSuchObjectException: no such object in table #3261

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@
* @summary test on a client notification deadlock.
* @author Shanliang JIANG
*
* @requires vm.compMode != "Xcomp"
* @comment Running with -Xcomp is likely to cause a timeout while establishing the connection
* (RMI: java.rmi.NoSuchObjectException: no such object in table).
*
* @run clean DeadLockTest
* @run build DeadLockTest
* @run main DeadLockTest
Expand Down Expand Up @@ -139,7 +143,7 @@ public void handleNotification(Notification n, Object h) {
try {
conn.getDefaultDomain();
} catch (IOException ioe) {
// Greate !
// OK
}

synchronized(this) {
Expand Down