Skip to content

Commit dc0cc55

Browse files
committedDec 9, 2019
8235530: Removed duplicated threadByName methods in nsk/jdi tests
Reviewed-by: dholmes, sspitsyn
1 parent 589f235 commit dc0cc55

File tree

198 files changed

+314
-4134
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

198 files changed

+314
-4134
lines changed
 

‎test/hotspot/jtreg/vmTestbase/nsk/jdi/BooleanType/_itself_/booleantype001.java

+1-22
Original file line numberDiff line numberDiff line change
@@ -142,13 +142,6 @@ private static void log3(String message) {
142142

143143
static int testExitCode = PASSED;
144144

145-
146-
class JDITestRuntimeException extends RuntimeException {
147-
JDITestRuntimeException(String str) {
148-
super("JDITestRuntimeException : " + str);
149-
}
150-
}
151-
152145
//------------------------------------------------------ methods
153146

154147
private int runThis (String argv[], PrintStream out) {
@@ -292,7 +285,7 @@ private void testRun()
292285
String lineForComm = "lineForComm";
293286
BreakpointRequest bpRequest;
294287

295-
bpRequest = settingBreakpoint(threadByName("main"),
288+
bpRequest = settingBreakpoint(debuggee.threadByNameOrThrow("main"),
296289
debuggeeClass,
297290
bPointMethod, lineForComm, "zero");
298291
bpRequest.enable();
@@ -347,20 +340,6 @@ private void testRun()
347340
return;
348341
}
349342

350-
private ThreadReference threadByName(String name)
351-
throws JDITestRuntimeException {
352-
353-
List all = vm.allThreads();
354-
ListIterator li = all.listIterator();
355-
356-
for (; li.hasNext(); ) {
357-
ThreadReference thread = (ThreadReference) li.next();
358-
if (thread.name().equals(name))
359-
return thread;
360-
}
361-
throw new JDITestRuntimeException("** Thread IS NOT found ** : " + name);
362-
}
363-
364343
/*
365344
* private BreakpointRequest settingBreakpoint(ThreadReference, ReferenceType,
366345
* String, String, String)

‎test/hotspot/jtreg/vmTestbase/nsk/jdi/BreakpointRequest/addInstanceFilter/instancefilter002.java

+1-21
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,6 @@ private static void log3(String message) {
155155
static int testExitCode = PASSED;
156156

157157

158-
class JDITestRuntimeException extends RuntimeException {
159-
JDITestRuntimeException(String str) {
160-
super("JDITestRuntimeException : " + str);
161-
}
162-
}
163-
164158
//------------------------------------------------------ methods
165159

166160
private int runThis (String argv[], PrintStream out) {
@@ -310,7 +304,7 @@ private void testRun()
310304
String bPointMethod = "methodForCommunication";
311305
String lineForComm = "lineForComm";
312306

313-
ThreadReference mainThread = threadByName("main");
307+
ThreadReference mainThread = debuggee.threadByNameOrThrow("main");
314308

315309
BreakpointRequest bpRequest = settingBreakpoint(mainThread,
316310
debuggeeClass,
@@ -419,20 +413,6 @@ private void testRun()
419413
return;
420414
}
421415

422-
private ThreadReference threadByName(String name)
423-
throws JDITestRuntimeException {
424-
425-
List all = vm.allThreads();
426-
ListIterator li = all.listIterator();
427-
428-
for (; li.hasNext(); ) {
429-
ThreadReference thread = (ThreadReference) li.next();
430-
if (thread.name().equals(name))
431-
return thread;
432-
}
433-
throw new JDITestRuntimeException("** Thread IS NOT found ** : " + name);
434-
}
435-
436416
/*
437417
* private BreakpointRequest settingBreakpoint(ThreadReference, ReferenceType,
438418
* String, String, String)

0 commit comments

Comments
 (0)
Please sign in to comment.