|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2018, 2019, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2018, 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
|
@@ -68,11 +68,25 @@ public class TestShutdownEvent {
|
68 | 68 |
|
69 | 69 | public static void main(String[] args) throws Throwable {
|
70 | 70 | for (int i = 0; i < subTests.length; ++i) {
|
71 |
| - if (subTests[i].isApplicable()) { |
72 |
| - runSubtest(i); |
73 |
| - } else { |
| 71 | + int attempts = subTests[i].attempts(); |
| 72 | + if (attempts == 0) { |
74 | 73 | System.out.println("Skipping non-applicable test: " + i);
|
75 | 74 | }
|
| 75 | + for (int j = 0; j < attempts -1; j++) { |
| 76 | + try { |
| 77 | + runSubtest(i); |
| 78 | + return; |
| 79 | + } catch (Exception e) { |
| 80 | + System.out.println("Failed: " + e.getMessage()); |
| 81 | + System.out.println(); |
| 82 | + System.out.println("Retry " + i + 1); |
| 83 | + } catch (OutOfMemoryError | StackOverflowError e) { |
| 84 | + System.out.println("Error"); |
| 85 | + // Can happen when parsing corrupt file. Abort test. |
| 86 | + return; |
| 87 | + } |
| 88 | + } |
| 89 | + runSubtest(i); |
76 | 90 | }
|
77 | 91 | }
|
78 | 92 |
|
@@ -115,8 +129,8 @@ public static void main(String[] args) throws Exception {
|
115 | 129 | }
|
116 | 130 |
|
117 | 131 | private interface ShutdownEventSubTest {
|
118 |
| - default boolean isApplicable() { |
119 |
| - return true; |
| 132 | + default int attempts() { |
| 133 | + return 1; |
120 | 134 | }
|
121 | 135 | void runTest();
|
122 | 136 | void verifyEvents(RecordedEvent event, int exitCode);
|
@@ -174,6 +188,11 @@ public void verifyEvents(RecordedEvent event, int exitCode) {
|
174 | 188 | // see 8219082 for details (running the crashed VM with -Xint would solve the issue too)
|
175 | 189 | //validateStackTrace(event.getStackTrace());
|
176 | 190 | }
|
| 191 | + |
| 192 | + @Override |
| 193 | + public int attempts() { |
| 194 | + return 3; |
| 195 | + } |
177 | 196 | }
|
178 | 197 |
|
179 | 198 | private static class TestUnhandledException implements ShutdownEventSubTest {
|
@@ -207,14 +226,14 @@ private static class TestSig implements ShutdownEventSubTest {
|
207 | 226 | private final String signalName;
|
208 | 227 |
|
209 | 228 | @Override
|
210 |
| - public boolean isApplicable() { |
| 229 | + public int attempts() { |
211 | 230 | if (Platform.isWindows()) {
|
212 |
| - return false; |
| 231 | + return 0; |
213 | 232 | }
|
214 | 233 | if (signalName.equals("HUP") && Platform.isSolaris()) {
|
215 |
| - return false; |
| 234 | + return 0; |
216 | 235 | }
|
217 |
| - return true; |
| 236 | + return 1; |
218 | 237 | }
|
219 | 238 |
|
220 | 239 | public TestSig(String signalName) {
|
|
0 commit comments