# HG changeset patch # User gadams # Date 1539025027 14400 # Node ID 2630d51656aa8913914b5cca20bb1ea7d57de518 # Parent d24b89390f6c718c41beab8e04f9bb6127acac1c 8201603: MonitorContendedEnter failure in nsk/jvmti/scenarios/contention/TC02/tc02t001 Reviewed-by: cjplummer diff -r d24b89390f6c -r 2630d51656aa test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC02/tc02t001.java --- a/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC02/tc02t001.java Tue Oct 09 16:03:56 2018 +0200 +++ b/test/hotspot/jtreg/vmTestbase/nsk/jvmti/scenarios/contention/TC02/tc02t001.java Mon Oct 08 14:57:07 2018 -0400 @@ -71,7 +71,7 @@ thread.waitingBarrier1.unlock(); try { - Thread.sleep(100); + Thread.sleep(1000); // Wait for contended "synchronized (M)" thread.M.wait(timeout); } catch (InterruptedException e) { throw new Failure(e); @@ -79,7 +79,7 @@ thread.waitingBarrier2.unlock(); try { - Thread.sleep(100); + Thread.sleep(1000); // Wait for contended "synchronized (M)" thread.M.wait(timeout); } catch (InterruptedException e) { throw new Failure(e); @@ -87,7 +87,7 @@ thread.waitingBarrier3.unlock(); try { - Thread.sleep(100); + Thread.sleep(1000); // Wait for contended "synchronized (M)" thread.M.wait(timeout); } catch (InterruptedException e) { throw new Failure(e);