Skip to content

Commit cb636b2

Browse files
committedJan 30, 2020
8219686: jdk/jfr/event/runtime/TestShutdownEvent.java recording file length is 0
Reviewed-by: mgronlun, mseledtsov
1 parent 9cfd632 commit cb636b2

File tree

1 file changed

+29
-10
lines changed

1 file changed

+29
-10
lines changed
 

‎test/jdk/jdk/jfr/event/runtime/TestShutdownEvent.java

+29-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -68,11 +68,25 @@ public class TestShutdownEvent {
6868

6969
public static void main(String[] args) throws Throwable {
7070
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) {
7473
System.out.println("Skipping non-applicable test: " + i);
7574
}
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);
7690
}
7791
}
7892

@@ -115,8 +129,8 @@ public static void main(String[] args) throws Exception {
115129
}
116130

117131
private interface ShutdownEventSubTest {
118-
default boolean isApplicable() {
119-
return true;
132+
default int attempts() {
133+
return 1;
120134
}
121135
void runTest();
122136
void verifyEvents(RecordedEvent event, int exitCode);
@@ -174,6 +188,11 @@ public void verifyEvents(RecordedEvent event, int exitCode) {
174188
// see 8219082 for details (running the crashed VM with -Xint would solve the issue too)
175189
//validateStackTrace(event.getStackTrace());
176190
}
191+
192+
@Override
193+
public int attempts() {
194+
return 3;
195+
}
177196
}
178197

179198
private static class TestUnhandledException implements ShutdownEventSubTest {
@@ -207,14 +226,14 @@ private static class TestSig implements ShutdownEventSubTest {
207226
private final String signalName;
208227

209228
@Override
210-
public boolean isApplicable() {
229+
public int attempts() {
211230
if (Platform.isWindows()) {
212-
return false;
231+
return 0;
213232
}
214233
if (signalName.equals("HUP") && Platform.isSolaris()) {
215-
return false;
234+
return 0;
216235
}
217-
return true;
236+
return 1;
218237
}
219238

220239
public TestSig(String signalName) {

0 commit comments

Comments
 (0)
Please sign in to comment.