Skip to content

Commit 933f90f

Browse files
committed
8251997: remove usage of PropertyResolvingWrapper in vmTestbase/vm/mlvm/
Reviewed-by: thartmann
1 parent 850d623 commit 933f90f

File tree

7 files changed

+15
-22
lines changed

7 files changed

+15
-22
lines changed

test/hotspot/jtreg/vmTestbase/vm/mlvm/TEST.properties

Lines changed: 0 additions & 2 deletions
This file was deleted.

test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jdi/breakpoint/Test.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* questions.
2222
*/
2323

24-
2524
/*
2625
* @test
2726
*
@@ -43,7 +42,7 @@
4342
* @build vm.mlvm.indy.func.jdi.breakpoint.Test
4443
* @run driver vm.mlvm.share.IndifiedClassesBuilder
4544
*
46-
* @run main/othervm PropertyResolvingWrapper
45+
* @run main/othervm
4746
* vm.mlvm.indy.func.jdi.breakpoint.Test
4847
* -verbose
4948
* -arch=${os.family}-${os.simpleArch}
@@ -75,10 +74,10 @@ protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
7574
result.add(new BreakpointInfo("bootstrap"));
7675
result.add(new BreakpointInfo("target"));
7776
result.add(new BreakpointInfo("stop"));
77+
7878
return result;
7979
}
8080

81-
8281
public static void main(String[] args) {
8382
launch(new ArgumentHandler(args));
8483
}

test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/func/jdi/breakpointOtherStratum/Test.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* questions.
2222
*/
2323

24-
2524
/*
2625
* @test
2726
*
@@ -49,7 +48,7 @@
4948
* vm.mlvm.share.StratumClassesBuilder
5049
* vmTestbase/vm/mlvm/share/jpda/INDIFY_SDE_DebuggeeBase.java
5150
*
52-
* @run main/othervm PropertyResolvingWrapper
51+
* @run main/othervm
5352
* vm.mlvm.indy.func.jdi.breakpointOtherStratum.Test
5453
* -verbose
5554
* -arch=${os.family}-${os.simpleArch}
@@ -71,7 +70,6 @@
7170
import java.util.List;
7271

7372
public class Test extends JDIBreakpointTest {
74-
7573
@Override
7674
protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
7775
List<BreakpointInfo> result = new ArrayList<>();
@@ -100,6 +98,7 @@ protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
10098
info.stratumInfo = new StratumInfo("Logo", "INDIFY_SDE_DebuggeeBase.logo", 5);
10199
result.add(info);
102100
}
101+
103102
return result;
104103
}
105104

test/hotspot/jtreg/vmTestbase/vm/mlvm/indy/stress/jdi/breakpointInCompiledCode/Test.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@
2121
* questions.
2222
*/
2323

24-
2524
/*
2625
* @test
2726
*
2827
* @summary converted from VM Testbase vm/mlvm/indy/stress/jdi/breakpointInCompiledCode.
2928
* VM Testbase keywords: [feature_mlvm, nonconcurrent, fds, jdk]
3029
* VM Testbase readme:
3130
* DESCRIPTION
32-
* Execute an invokedynamic instruction 10000 times to trigger Hotspot compilation. Set a debugger breakpoint to invokedynamic instruction.
31+
* Execute an invokedynamic instruction 10000 times to trigger Hotspot compilation.
32+
* Set a debugger breakpoint to invokedynamic instruction.
3333
* Make few debugger steps, obtaining various information from JVM
3434
*
3535
* @library /vmTestbase
@@ -42,7 +42,7 @@
4242
* @build vm.mlvm.indy.stress.jdi.breakpointInCompiledCode.Test
4343
* @run driver vm.mlvm.share.IndifiedClassesBuilder
4444
*
45-
* @run main/othervm PropertyResolvingWrapper
45+
* @run main/othervm
4646
* vm.mlvm.indy.stress.jdi.breakpointInCompiledCode.Test
4747
* -verbose
4848
* -arch=${os.family}-${os.simpleArch}
@@ -64,9 +64,9 @@
6464
import java.util.List;
6565

6666
public class Test extends JDIBreakpointTest {
67-
// bootstrap,runDebuggee=>(indyWrapper:S5000,~target,stop)
67+
// bootstrap,runDebuggee=>(indyWrapper:S5000,~target,stop)
6868
@Override
69-
protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
69+
protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
7070
List<BreakpointInfo> result = new ArrayList<>();
7171
result.add(new BreakpointInfo("bootstrap"));
7272
{
@@ -88,6 +88,7 @@ protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
8888
info.subBreakpoints = subBreakpoints;
8989
result.add(info);
9090
}
91+
9192
return result;
9293
}
9394

test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/jdi/breakpoint/Test.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* questions.
2222
*/
2323

24-
2524
/*
2625
* @test
2726
* @key randomness
@@ -43,7 +42,7 @@
4342
* @build vm.mlvm.meth.func.jdi.breakpoint.Test
4443
* @run driver vm.mlvm.share.IndifiedClassesBuilder
4544
*
46-
* @run main/othervm PropertyResolvingWrapper
45+
* @run main/othervm
4746
* vm.mlvm.meth.func.jdi.breakpoint.Test
4847
* -verbose
4948
* -arch=${os.family}-${os.simpleArch}
@@ -58,7 +57,6 @@
5857
import vm.mlvm.share.jdi.ArgumentHandler;
5958
import vm.mlvm.share.jdi.BreakpointInfo;
6059
import vm.mlvm.share.jdi.JDIBreakpointTest;
61-
import vm.mlvm.share.jpda.StratumInfo;
6260

6361
import java.util.ArrayList;
6462
import java.util.List;
@@ -85,7 +83,6 @@ protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
8583
return result;
8684
}
8785

88-
8986
public static void main(String[] args) {
9087
launch(new ArgumentHandler(args));
9188
}

test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/func/jdi/breakpointOtherStratum/Test.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@
2121
* questions.
2222
*/
2323

24-
2524
/*
2625
* @test
2726
*
@@ -49,7 +48,7 @@
4948
* vm.mlvm.share.StratumClassesBuilder
5049
* vmTestbase/vm/mlvm/share/jpda/SDE_MHDebuggeeBase.java
5150
*
52-
* @run main/othervm PropertyResolvingWrapper
51+
* @run main/othervm
5352
* vm.mlvm.meth.func.jdi.breakpointOtherStratum.Test
5453
* -verbose
5554
* -arch=${os.family}-${os.simpleArch}
@@ -70,7 +69,7 @@
7069
import java.util.ArrayList;
7170
import java.util.List;
7271

73-
public class Test extends JDIBreakpointTest {
72+
public class Test extends JDIBreakpointTest {
7473
@Override
7574
protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
7675
List<BreakpointInfo> result = new ArrayList<>();
@@ -106,10 +105,10 @@ protected List<BreakpointInfo> getBreakpoints(String debuggeeClassName) {
106105
info.stratumInfo = new StratumInfo("Logo", "SDE_MHDebuggeeBase.logo", 6);
107106
result.add(info);
108107
}
108+
109109
return result;
110110
}
111111

112-
113112
public static void main(String[] args) {
114113
launch(new ArgumentHandler(args));
115114
}

test/hotspot/jtreg/vmTestbase/vm/mlvm/meth/stress/jdi/breakpointInCompiledCode/Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
* @build vm.mlvm.meth.stress.jdi.breakpointInCompiledCode.Test
4444
* @run driver vm.mlvm.share.IndifiedClassesBuilder
4545
*
46-
* @run main/othervm PropertyResolvingWrapper
46+
* @run main/othervm
4747
* vm.mlvm.meth.stress.jdi.breakpointInCompiledCode.Test
4848
* -verbose
4949
* -arch=${os.family}-${os.simpleArch}

0 commit comments

Comments
 (0)