File tree 1 file changed +5
-0
lines changed
test/hotspot/jtreg/vmTestbase/nsk/jdi/EventRequestManager/threadStartRequests
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -127,6 +127,7 @@ private int runThis (String argv[], PrintStream out) {
127
127
log2 ("debuggee launched" );
128
128
} catch ( Exception e ) {
129
129
log3 ("ERROR: Exception : " + e );
130
+ e .printStackTrace (System .out );
130
131
log2 (" test cancelled" );
131
132
return FAILED ;
132
133
}
@@ -170,6 +171,7 @@ private int runThis (String argv[], PrintStream out) {
170
171
vm .exit (PASS_BASE );
171
172
} catch ( Exception e ) {
172
173
log3 ("ERROR: Exception : " + e );
174
+ e .printStackTrace (System .out );
173
175
}
174
176
break ;
175
177
@@ -183,6 +185,7 @@ private int runThis (String argv[], PrintStream out) {
183
185
}
184
186
} catch ( Exception e ) {
185
187
log3 ("ERROR: Exception : " + e );
188
+ e .printStackTrace (System .out );
186
189
}
187
190
break ;
188
191
}
@@ -211,9 +214,11 @@ private int runTest() {
211
214
return 1 ;
212
215
} catch ( VMDisconnectedException e ) {
213
216
log3 ("ERROR: VMDisconnectedException : " + e );
217
+ e .printStackTrace (System .out );
214
218
return 2 ;
215
219
} catch ( Exception e ) {
216
220
log3 ("ERROR: Exception : " + e );
221
+ e .printStackTrace (System .out );
217
222
return 1 ;
218
223
}
219
224
You can’t perform that action at this time.
0 commit comments