Skip to content

Commit 3a9f764

Browse files
committedApr 28, 2020
8243928: several svc tests can be run in driver mode
Reviewed-by: amenkov
1 parent 223ca80 commit 3a9f764

15 files changed

+26
-22
lines changed
 

‎test/hotspot/jtreg/serviceability/dcmd/gc/RunFinalizationTest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 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
@@ -36,7 +36,7 @@
3636
* java.management
3737
* jdk.internal.jvmstat/sun.jvmstat.monitor
3838
* @build FinalizationRunner
39-
* @run main RunFinalizationTest
39+
* @run driver RunFinalizationTest
4040
*/
4141
public class RunFinalizationTest {
4242
private final static String TEST_APP_NAME = "FinalizationRunner";

‎test/hotspot/jtreg/serviceability/jvmti/CanGenerateAllClassHook/CanGenerateAllClassHook.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2018, 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
@@ -30,7 +30,7 @@
3030
* @requires vm.cds
3131
* @library /test/lib
3232
* @compile CanGenerateAllClassHook.java
33-
* @run main/othervm/native CanGenerateAllClassHook
33+
* @run driver/native CanGenerateAllClassHook
3434
*/
3535

3636
import jdk.test.lib.cds.CDSTestUtils;

‎test/hotspot/jtreg/serviceability/jvmti/RedefineClasses/RedefinePreviousVersions.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 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
@@ -31,8 +31,8 @@
3131
* @modules java.compiler
3232
* java.instrument
3333
* jdk.jartool/sun.tools.jar
34-
* @run main RedefineClassHelper
35-
* @run main/othervm RedefinePreviousVersions test
34+
* @run driver RedefineClassHelper
35+
* @run driver RedefinePreviousVersions test
3636
*/
3737

3838
import jdk.test.lib.process.ProcessTools;

‎test/hotspot/jtreg/serviceability/jvmti/RedefineClasses/RetransformClassesZeroLength.java

+2-2
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
@@ -28,7 +28,7 @@
2828
* @library /test/lib
2929
* @modules java.instrument
3030
* @compile RetransformClassesZeroLength.java
31-
* @run main RetransformClassesZeroLength
31+
* @run driver RetransformClassesZeroLength
3232
*/
3333

3434
import java.lang.instrument.ClassFileTransformer;

‎test/hotspot/jtreg/serviceability/jvmti/RedefineClasses/TestRedefineObject.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 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
@@ -41,7 +41,7 @@
4141
* java.management
4242
* @build Agent
4343
* @run driver ClassFileInstaller Agent
44-
* @run main TestRedefineObject
44+
* @run driver TestRedefineObject
4545
* @run main/othervm -javaagent:agent.jar -Xlog:redefine+class+load=debug,redefine+class+timer=info Agent
4646
*/
4747
public class TestRedefineObject {

‎test/hotspot/jtreg/serviceability/logging/TestBasicLogOutput.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 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
@@ -26,6 +26,7 @@
2626
* @summary Ensure logging can be enabled and successfully prints to stdout.
2727
* @modules java.base/jdk.internal.misc
2828
* @library /test/lib
29+
* @run driver TestBasicLogOutput
2930
*/
3031

3132
import jdk.test.lib.process.ProcessTools;

‎test/hotspot/jtreg/serviceability/logging/TestDefaultLogOutput.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 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
@@ -26,6 +26,7 @@
2626
* @summary Ensure logging is default on stdout.
2727
* @modules java.base/jdk.internal.misc
2828
* @library /test/lib
29+
* @run driver TestDefaultLogOutput
2930
*/
3031

3132
import jdk.test.lib.process.ProcessTools;

‎test/hotspot/jtreg/serviceability/logging/TestFullNames.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2019, 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
@@ -27,6 +27,7 @@
2727
* @bug 8215398
2828
* @modules java.base/jdk.internal.misc
2929
* @library /test/lib
30+
* @run driver TestFullNames
3031
*/
3132

3233
import java.io.File;

‎test/hotspot/jtreg/serviceability/logging/TestMultipleXlogArgs.java

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 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
@@ -26,6 +26,7 @@
2626
* @summary Ensure multiple -Xlog arguments aggregate the logging options.
2727
* @modules java.base/jdk.internal.misc
2828
* @library /test/lib
29+
* @run driver TestMultipleXlogArgs
2930
*/
3031

3132
import jdk.test.lib.process.ProcessTools;

‎test/hotspot/jtreg/serviceability/logging/TestQuotedLogOutputs.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 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
@@ -26,7 +26,7 @@
2626
* @summary Ensure proper parsing of quoted output names for -Xlog arguments.
2727
* @modules java.base/jdk.internal.misc
2828
* @library /test/lib
29-
* @run main/othervm TestQuotedLogOutputs
29+
* @run driver TestQuotedLogOutputs
3030
*/
3131

3232
import java.io.File;

‎test/hotspot/jtreg/serviceability/sa/ClhsdbCDSCore.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
* @requires vm.flavor == "server"
3232
* @library /test/lib
3333
* @modules java.base/jdk.internal.misc
34-
* @run main/othervm/timeout=2400 -Xmx1g ClhsdbCDSCore
34+
* @run driver/timeout=2400 ClhsdbCDSCore
3535
*/
3636

3737
import java.io.File;

‎test/hotspot/jtreg/serviceability/sa/TestClassDump.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
* @summary Test ClassDump tool
3838
* @requires vm.hasSA
3939
* @library /test/lib
40-
* @run main/othervm TestClassDump
40+
* @run driver TestClassDump
4141
*/
4242

4343
public class TestClassDump {

‎test/hotspot/jtreg/serviceability/sa/TestCpoolForInvokeDynamic.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
* jdk.hotspot.agent/sun.jvm.hotspot.oops
5353
* jdk.hotspot.agent/sun.jvm.hotspot.debugger
5454
* jdk.hotspot.agent/sun.jvm.hotspot.ui.classbrowser
55-
* @run main/othervm TestCpoolForInvokeDynamic
55+
* @run driver TestCpoolForInvokeDynamic
5656
*/
5757

5858
public class TestCpoolForInvokeDynamic {

‎test/hotspot/jtreg/serviceability/sa/TestDefaultMethods.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
* jdk.hotspot.agent/sun.jvm.hotspot.utilities
5151
* jdk.hotspot.agent/sun.jvm.hotspot.oops
5252
* jdk.hotspot.agent/sun.jvm.hotspot.debugger
53-
* @run main/othervm TestDefaultMethods
53+
* @run driver TestDefaultMethods
5454
*/
5555

5656
public class TestDefaultMethods {

‎test/hotspot/jtreg/serviceability/sa/TestG1HeapRegion.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
* jdk.hotspot.agent/sun.jvm.hotspot.gc.g1
4747
* jdk.hotspot.agent/sun.jvm.hotspot.memory
4848
* jdk.hotspot.agent/sun.jvm.hotspot.runtime
49-
* @run main/othervm TestG1HeapRegion
49+
* @run driver TestG1HeapRegion
5050
*/
5151

5252
public class TestG1HeapRegion {

0 commit comments

Comments
 (0)
Please sign in to comment.