|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2006, 2018, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
|
26 | 26 | import java.io.StreamTokenizer;
|
27 | 27 | import java.io.StringReader;
|
28 | 28 | import nsk.share.Consts;
|
| 29 | +import sun.hotspot.WhiteBox; |
29 | 30 |
|
30 | 31 | /*
|
31 | 32 | * This class is intended for execution several JDI tests in single VM and used together with nsk.share.jdi.SerialExecutionDebugger
|
|
41 | 42 | * For more detailed description of serial test execution see SerialExecutionDebugger
|
42 | 43 | */
|
43 | 44 | public class SerialExecutionDebuggee extends AbstractJDIDebuggee {
|
| 45 | + private final WhiteBox WB = WhiteBox.getWhiteBox(); |
| 46 | + |
44 | 47 | public static void main(String args[]) {
|
45 | 48 | new SerialExecutionDebuggee().doTest(args);
|
46 | 49 | }
|
@@ -129,6 +132,15 @@ public boolean parseCommand(String command) {
|
129 | 132 | } else if (command.equals(COMMAND_CLEAR_DEBUGGEE)) {
|
130 | 133 | currentDebuggee = null;
|
131 | 134 |
|
| 135 | + // The debuggee can intentionally create inflated monitors. |
| 136 | + // With async deflation, this can pin a StateTestThread object |
| 137 | + // until the next deflation cycle. This can confuse tests run |
| 138 | + // by nsk/jdi/stress/serial/mixed002/TestDescription.java that |
| 139 | + // expect only one StateTestThread object to exist in each |
| 140 | + // of the debugger tests that mixed002 runs serially in the |
| 141 | + // same VM. |
| 142 | + WB.deflateIdleMonitors(); |
| 143 | + |
132 | 144 | return true;
|
133 | 145 | }
|
134 | 146 |
|
|
0 commit comments