@@ -76,41 +76,33 @@ public static void main(String[] args) throws Exception {
76
76
77
77
public static void main (String [] args ) throws Exception {
78
78
// Test without dumppath
79
- test (CrasherIllegalAccess .class , "" , true );
80
- test (CrasherIllegalAccess .class , "" , false );
81
- test (CrasherHalt .class , "" , true );
82
- test (CrasherHalt .class , "" , false );
79
+ test (CrasherIllegalAccess .class , "" , true , null , true );
80
+ test (CrasherIllegalAccess .class , "" , false , null , true );
81
+
82
+ // JDK-8290020 disables dumps when calling halt, so expect no dump.
83
+ test (CrasherHalt .class , "" , true , null , false );
84
+ test (CrasherHalt .class , "" , false , null , false );
83
85
84
86
// Test with dumppath
85
87
Path dumppath = Files .createTempDirectory (null );
86
88
try {
87
- test (CrasherIllegalAccess .class , "" , true , dumppath .toString ());
88
- test (CrasherIllegalAccess .class , "" , false , dumppath .toString ());
89
- test (CrasherHalt .class , "" , true , dumppath .toString ());
90
- test (CrasherHalt .class , "" , false , dumppath .toString ());
89
+ test (CrasherIllegalAccess .class , "" , true , dumppath .toString (), true );
90
+ test (CrasherIllegalAccess .class , "" , false , dumppath .toString (), true );
91
91
} finally {
92
92
dumppath .toFile ().delete ();
93
93
}
94
94
95
95
// Test is excluded until 8219680 is fixed
96
96
// @ignore 8219680
97
- // test(CrasherSig.class, "FPE", true);
98
- }
99
-
100
- private static void test (Class <?> crasher , String signal , boolean disk ) throws Exception {
101
- test (crasher , signal , disk , null );
97
+ // test(CrasherSig.class, "FPE", true, true);
102
98
}
103
99
104
- private static void test (Class <?> crasher , String signal , boolean disk , String dumppath ) throws Exception {
105
- test (crasher , signal , disk , dumppath , dumppath );
106
- }
107
-
108
- private static void test (Class <?> crasher , String signal , boolean disk , String dumppath , String expectedPath ) throws Exception {
100
+ private static void test (Class <?> crasher , String signal , boolean disk , String dumppath , boolean expectDump ) throws Exception {
109
101
// The JVM may be in a state it can't recover from, so try three times
110
102
// before concluding functionality is not working.
111
103
for (int attempt = 0 ; attempt < ATTEMPTS ; attempt ++) {
112
104
try {
113
- verify (runProcess (crasher , signal , disk , dumppath ), expectedPath );
105
+ verify (runProcess (crasher , signal , disk , dumppath ), dumppath , expectDump );
114
106
return ;
115
107
} catch (Exception e ) {
116
108
System .out .println ("Attempt " + attempt + ". Verification failed:" );
@@ -148,19 +140,23 @@ private static long runProcess(Class<?> crasher, String signal, boolean disk, St
148
140
return p .pid ();
149
141
}
150
142
151
- private static void verify (long pid , String dumppath ) throws IOException {
143
+ private static void verify (long pid , String dumppath , boolean expectDump ) throws IOException {
152
144
String fileName = "hs_err_pid" + pid + ".jfr" ;
153
145
Path file = (dumppath == null ) ? Paths .get (fileName ) : Paths .get (dumppath , fileName );
154
146
file = file .toAbsolutePath ().normalize ();
155
147
156
- Asserts .assertTrue (Files .exists (file ), "No emergency jfr recording file " + file + " exists" );
157
- Asserts .assertNotEquals (Files .size (file ), 0L , "File length 0. Should at least be some bytes" );
158
- System .out .printf ("File size=%d%n" , Files .size (file ));
148
+ if (expectDump ) {
149
+ Asserts .assertTrue (Files .exists (file ), "No emergency jfr recording file " + file + " exists" );
150
+ Asserts .assertNotEquals (Files .size (file ), 0L , "File length 0. Should at least be some bytes" );
151
+ System .out .printf ("File size=%d%n" , Files .size (file ));
159
152
160
- List <RecordedEvent > events = RecordingFile .readAllEvents (file );
161
- Asserts .assertFalse (events .isEmpty (), "No event found" );
162
- System .out .printf ("Found event %s%n" , events .get (0 ).getEventType ().getName ());
153
+ List <RecordedEvent > events = RecordingFile .readAllEvents (file );
154
+ Asserts .assertFalse (events .isEmpty (), "No event found" );
155
+ System .out .printf ("Found event %s%n" , events .get (0 ).getEventType ().getName ());
163
156
164
- Files .delete (file );
157
+ Files .delete (file );
158
+ } else {
159
+ Asserts .assertFalse (Files .exists (file ), "Emergency jfr recording file " + file + " exists but wasn't expected" );
160
+ }
165
161
}
166
162
}
0 commit comments