|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2001, 2020, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2001, 2022, 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
|
|
93 | 93 |
|
94 | 94 | public class popframes001 extends JDIBase {
|
95 | 95 |
|
| 96 | + static boolean vthreadMode = "Virtual".equals(System.getProperty("main.wrapper")); |
| 97 | + |
96 | 98 | public static void main (String argv[]) {
|
97 | 99 |
|
98 | 100 | int result = run(argv, System.out);
|
@@ -219,6 +221,10 @@ private int runTest() {
|
219 | 221 | try {
|
220 | 222 | testRun();
|
221 | 223 |
|
| 224 | + if (vthreadMode) { |
| 225 | + return 0; // just exit. we already got the expected OpaqueFrameException |
| 226 | + } |
| 227 | + |
222 | 228 | log2("waiting for VMDeathEvent");
|
223 | 229 | getEventSet();
|
224 | 230 | if (eventIterator.nextEvent() instanceof VMDeathEvent)
|
@@ -350,10 +356,24 @@ private void testRun()
|
350 | 356 | log2("......thread2Ref.popFrames(stackFrame);");
|
351 | 357 | try {
|
352 | 358 | thread2Ref.popFrames(stackFrame);
|
353 |
| - } catch ( IncompatibleThreadStateException e ) { |
354 |
| - log3("ERROR: IncompatibleThreadStateException"); |
355 |
| - testExitCode = FAILED; |
356 |
| - break; |
| 359 | + if (vthreadMode) { |
| 360 | + log3("ERROR: Expected OpaqueFrameException"); |
| 361 | + testExitCode = FAILED; |
| 362 | + } |
| 363 | + } catch ( Exception e ) { |
| 364 | + if (vthreadMode && (e instanceof OpaqueFrameException)) { |
| 365 | + // pass. resume thread and exit |
| 366 | + log2("......got expected OpaqueFrameException"); |
| 367 | + log2("......thread2Ref.resume();"); |
| 368 | + thread2Ref.resume(); |
| 369 | + breakpointForCommunication(); |
| 370 | + vm.resume(); |
| 371 | + break; |
| 372 | + } else { |
| 373 | + log3("ERROR: " + e.getClass().getSimpleName()); |
| 374 | + testExitCode = FAILED; |
| 375 | + throw e; |
| 376 | + } |
357 | 377 | }
|
358 | 378 |
|
359 | 379 | log2("......thread2Ref.resume();");
|
|
0 commit comments