Skip to content

Commit 622f239

Browse files
author
Mandy Chung
committedMar 20, 2023
8304163: Move jdk.internal.module.ModuleInfoWriter to the test library
Reviewed-by: jpai, alanb
1 parent 4c8c993 commit 622f239

17 files changed

+135
-63
lines changed
 

‎test/hotspot/jtreg/serviceability/dcmd/framework/TestProcessModuleLauncher.java

+2-2
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, 2023, 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
@@ -21,7 +21,7 @@
2121
* questions.
2222
*/
2323

24-
import jdk.internal.module.ModuleInfoWriter;
24+
import jdk.test.lib.util.ModuleInfoWriter;
2525

2626
import java.io.File;
2727
import java.io.IOException;

‎test/hotspot/jtreg/serviceability/dcmd/framework/VMVersionTest.java

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, 2019, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, 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
@@ -35,13 +35,17 @@
3535
* @test
3636
* @bug 8221730
3737
* @summary Test of diagnostic command VM.version (tests all DCMD executors)
38-
* @library /test/lib
39-
* /vmTestbase
40-
* @modules java.base/jdk.internal.misc
38+
* @modules java.base/jdk.internal.classfile
39+
* java.base/jdk.internal.classfile.attribute
40+
* java.base/jdk.internal.classfile.constantpool
41+
* java.base/jdk.internal.classfile.java.lang.constant
42+
* java.base/jdk.internal.misc
4143
* java.base/jdk.internal.module
4244
* java.compiler
4345
* java.management
4446
* jdk.internal.jvmstat/sun.jvmstat.monitor
47+
* @library /test/lib
48+
* /vmTestbase
4549
* @run testng/othervm -XX:+UsePerfData VMVersionTest
4650
*/
4751
public class VMVersionTest {

‎test/jdk/java/lang/ClassLoader/securityManager/ClassLoaderTest.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2023, 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,9 +26,14 @@
2626
* @bug 8168423
2727
* @summary Different types of ClassLoader running with(out) SecurityManager and
2828
* (in)valid security policy file.
29+
* @modules java.base/jdk.internal.classfile
30+
* java.base/jdk.internal.classfile.attribute
31+
* java.base/jdk.internal.classfile.constantpool
32+
* java.base/jdk.internal.classfile.java.lang.constant
33+
* java.base/jdk.internal.module
2934
* @library /test/lib
30-
* @modules java.base/jdk.internal.module
3135
* @build jdk.test.lib.util.JarUtils
36+
* jdk.test.lib.util.ModuleInfoWriter
3237
* @build TestClassLoader TestClient
3338
* @run main ClassLoaderTest -noPolicy
3439
* @run main ClassLoaderTest -validPolicy
@@ -48,9 +53,9 @@
4853
import java.util.Collections;
4954
import java.util.LinkedList;
5055
import java.util.List;
51-
import jdk.internal.module.ModuleInfoWriter;
5256
import jdk.test.lib.process.ProcessTools;
5357
import jdk.test.lib.util.JarUtils;
58+
import jdk.test.lib.util.ModuleInfoWriter;
5459

5560
public class ClassLoaderTest {
5661

‎test/jdk/java/lang/ModuleTests/AnnotationsTest.java

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2023, 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,14 +36,14 @@
3636
import java.util.List;
3737
import java.util.Set;
3838

39-
import jdk.internal.module.ModuleInfoWriter;
4039
import jdk.internal.org.objectweb.asm.AnnotationVisitor;
4140
import jdk.internal.org.objectweb.asm.Attribute;
4241
import jdk.internal.org.objectweb.asm.ClassReader;
4342
import jdk.internal.org.objectweb.asm.ClassVisitor;
4443
import jdk.internal.org.objectweb.asm.ClassWriter;
4544
import jdk.internal.org.objectweb.asm.Opcodes;
4645
import jdk.internal.org.objectweb.asm.commons.ModuleTargetAttribute;
46+
import jdk.test.lib.util.ModuleInfoWriter;
4747

4848
import org.testng.annotations.Test;
4949
import static org.testng.Assert.*;
@@ -52,7 +52,13 @@
5252
* @test
5353
* @modules java.base/jdk.internal.org.objectweb.asm
5454
* java.base/jdk.internal.org.objectweb.asm.commons
55+
* java.base/jdk.internal.classfile
56+
* java.base/jdk.internal.classfile.attribute
57+
* java.base/jdk.internal.classfile.constantpool
58+
* java.base/jdk.internal.classfile.java.lang.constant
5559
* java.base/jdk.internal.module
60+
* @library /test/lib
61+
* @build jdk.test.lib.util.ModuleInfoWriter
5662
* @run testng AnnotationsTest
5763
* @summary Basic test of annotations on modules
5864
*/

‎test/jdk/java/lang/module/ClassFileVersionsTest.java

+9-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2017, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2017, 2023, 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
@@ -23,7 +23,13 @@
2323

2424
/**
2525
* @test
26-
* @modules java.base/jdk.internal.module
26+
* @modules java.base/jdk.internal.classfile
27+
* java.base/jdk.internal.classfile.attribute
28+
* java.base/jdk.internal.classfile.constantpool
29+
* java.base/jdk.internal.classfile.java.lang.constant
30+
* java.base/jdk.internal.module
31+
* @library /test/lib
32+
* @build jdk.test.lib.util.ModuleInfoWriter
2733
* @run testng ClassFileVersionsTest
2834
* @summary Test parsing of module-info.class with different class file versions
2935
*/
@@ -36,7 +42,7 @@
3642

3743
import static java.lang.module.ModuleDescriptor.Requires.Modifier.*;
3844

39-
import jdk.internal.module.ModuleInfoWriter;
45+
import jdk.test.lib.util.ModuleInfoWriter;
4046

4147
import org.testng.annotations.DataProvider;
4248
import org.testng.annotations.Test;

‎test/jdk/java/lang/module/ConfigurationTest.java

+8-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2014, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2014, 2023, 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
@@ -23,10 +23,15 @@
2323

2424
/**
2525
* @test
26-
* @library /test/lib
2726
* @modules java.base/jdk.internal.access
27+
* java.base/jdk.internal.classfile
28+
* java.base/jdk.internal.classfile.attribute
29+
* java.base/jdk.internal.classfile.constantpool
30+
* java.base/jdk.internal.classfile.java.lang.constant
2831
* java.base/jdk.internal.module
32+
* @library /test/lib
2933
* @build ConfigurationTest
34+
* jdk.test.lib.util.ModuleInfoWriter
3035
* jdk.test.lib.util.ModuleUtils
3136
* @run testng ConfigurationTest
3237
* @summary Basic tests for java.lang.module.Configuration
@@ -47,10 +52,10 @@
4752
import java.util.List;
4853
import java.util.Set;
4954

55+
import jdk.test.lib.util.ModuleInfoWriter;
5056
import jdk.test.lib.util.ModuleUtils;
5157

5258
import jdk.internal.access.SharedSecrets;
53-
import jdk.internal.module.ModuleInfoWriter;
5459
import jdk.internal.module.ModuleTarget;
5560
import org.testng.annotations.DataProvider;
5661
import org.testng.annotations.Test;

‎test/jdk/java/lang/module/ModuleDescriptorTest.java

+6-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2023, 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
@@ -25,10 +25,13 @@
2525
* @test
2626
* @bug 8142968 8158456 8298875
2727
* @modules java.base/jdk.internal.access
28-
* java.base/jdk.internal.module
2928
* java.base/jdk.internal.classfile
3029
* java.base/jdk.internal.classfile.attribute
30+
* java.base/jdk.internal.classfile.constantpool
3131
* java.base/jdk.internal.classfile.java.lang.constant
32+
* java.base/jdk.internal.module
33+
* @library /test/lib
34+
* @build jdk.test.lib.util.ModuleInfoWriter
3235
* @run testng ModuleDescriptorTest
3336
* @summary Basic test for java.lang.module.ModuleDescriptor and its builder
3437
*/
@@ -64,7 +67,7 @@
6467
import jdk.internal.classfile.attribute.ModuleAttribute;
6568
import jdk.internal.classfile.java.lang.constant.PackageDesc;
6669
import jdk.internal.classfile.java.lang.constant.ModuleDesc;
67-
import jdk.internal.module.ModuleInfoWriter;
70+
import jdk.test.lib.util.ModuleInfoWriter;
6871
import org.testng.annotations.DataProvider;
6972
import org.testng.annotations.Test;
7073
import static org.testng.Assert.*;

‎test/jdk/java/lang/module/ModuleFinderTest.java

+9-4
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, 2023, 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
@@ -23,8 +23,13 @@
2323

2424
/**
2525
* @test
26-
* @modules java.base/jdk.internal.module
27-
* @build ModuleFinderTest
26+
* @modules java.base/jdk.internal.classfile
27+
* java.base/jdk.internal.classfile.attribute
28+
* java.base/jdk.internal.classfile.constantpool
29+
* java.base/jdk.internal.classfile.java.lang.constant
30+
* java.base/jdk.internal.module
31+
* @library /test/lib
32+
* @build ModuleFinderTest jdk.test.lib.util.ModuleInfoWriter
2833
* @run testng ModuleFinderTest
2934
* @summary Basic tests for java.lang.module.ModuleFinder
3035
*/
@@ -45,7 +50,7 @@
4550
import java.util.jar.JarOutputStream;
4651
import java.util.stream.Collectors;
4752

48-
import jdk.internal.module.ModuleInfoWriter;
53+
import jdk.test.lib.util.ModuleInfoWriter;
4954

5055
import org.testng.annotations.Test;
5156
import static org.testng.Assert.*;

‎test/jdk/java/lang/module/ModuleNamesTest.java

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2018, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2023, 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
@@ -24,7 +24,13 @@
2424
/**
2525
* @test
2626
* @modules java.base/jdk.internal.access
27+
* java.base/jdk.internal.classfile
28+
* java.base/jdk.internal.classfile.attribute
29+
* java.base/jdk.internal.classfile.constantpool
30+
* java.base/jdk.internal.classfile.java.lang.constant
2731
* java.base/jdk.internal.module
32+
* @library /test/lib
33+
* @build jdk.test.lib.util.ModuleInfoWriter
2834
* @run testng ModuleNamesTest
2935
* @summary Basic test of reading a module-info.class with module names that
3036
* are legal in class files but not legal in the Java Language
@@ -42,7 +48,8 @@
4248
import java.util.Set;
4349

4450
import jdk.internal.access.SharedSecrets;
45-
import jdk.internal.module.ModuleInfoWriter;
51+
52+
import jdk.test.lib.util.ModuleInfoWriter;
4653

4754
import org.testng.annotations.DataProvider;
4855
import org.testng.annotations.Test;

‎test/jdk/java/lang/module/MultiReleaseJarTest.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2023, 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
@@ -23,9 +23,15 @@
2323

2424
/**
2525
* @test
26+
* @modules java.base/jdk.internal.classfile
27+
* java.base/jdk.internal.classfile.attribute
28+
* java.base/jdk.internal.classfile.constantpool
29+
* java.base/jdk.internal.classfile.java.lang.constant
30+
* java.base/jdk.internal.module
2631
* @library /test/lib
27-
* @modules java.base/jdk.internal.module
28-
* @build MultiReleaseJarTest jdk.test.lib.util.JarUtils
32+
* @build MultiReleaseJarTest
33+
* jdk.test.lib.util.JarUtils
34+
* jdk.test.lib.util.ModuleInfoWriter
2935
* @run testng MultiReleaseJarTest
3036
* @run testng/othervm -Djdk.util.jar.enableMultiRelease=false MultiReleaseJarTest
3137
* @summary Basic test of modular JARs as multi-release JARs
@@ -54,7 +60,7 @@
5460
import java.util.jar.Attributes;
5561
import java.util.jar.Manifest;
5662

57-
import jdk.internal.module.ModuleInfoWriter;
63+
import jdk.test.lib.util.ModuleInfoWriter;
5864
import jdk.test.lib.util.JarUtils;
5965

6066
import org.testng.annotations.Test;

‎test/jdk/java/security/Provider/SecurityProviderModularTest.java

+10-5
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, 2023, 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
@@ -38,19 +38,24 @@
3838
import java.io.OutputStream;
3939
import java.lang.module.ModuleDescriptor;
4040
import java.lang.module.ModuleDescriptor.Builder;
41-
import jdk.internal.module.ModuleInfoWriter;
4241
import jdk.test.lib.process.ProcessTools;
4342
import jdk.test.lib.util.JarUtils;
44-
43+
import jdk.test.lib.util.ModuleInfoWriter;
4544

4645
/*
4746
* @test
4847
* @bug 8130360 8183310
4948
* @summary Test security provider in different combination of modular option
5049
* defined with(out) service description.
50+
* @modules java.base/jdk.internal.classfile
51+
* java.base/jdk.internal.classfile.attribute
52+
* java.base/jdk.internal.classfile.constantpool
53+
* java.base/jdk.internal.classfile.java.lang.constant
54+
* java.base/jdk.internal.module
5155
* @library /test/lib
52-
* @modules java.base/jdk.internal.module
53-
* @build jdk.test.lib.util.JarUtils TestProvider TestClient
56+
* @build jdk.test.lib.util.JarUtils
57+
* jdk.test.lib.util.ModuleInfoWriter
58+
* TestProvider TestClient
5459
* @run main SecurityProviderModularTest CL true
5560
* @run main SecurityProviderModularTest CL false
5661
* @run main SecurityProviderModularTest SL true

‎test/jdk/javax/security/auth/login/modules/JaasModularClientTest.java

+8-4
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, 2023, 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
@@ -33,19 +33,23 @@
3333
import java.io.OutputStream;
3434
import java.lang.module.ModuleDescriptor;
3535
import java.lang.module.ModuleDescriptor.Builder;
36-
import jdk.internal.module.ModuleInfoWriter;
3736
import java.util.stream.Stream;
3837
import jdk.test.lib.process.ProcessTools;
3938
import jdk.test.lib.process.OutputAnalyzer;
4039
import jdk.test.lib.util.JarUtils;
40+
import jdk.test.lib.util.ModuleInfoWriter;
4141

4242
/*
4343
* @test
4444
* @bug 8078813 8183310
4545
* @summary Test custom JAAS login module with all possible modular option.
46+
* @modules java.base/jdk.internal.classfile
47+
* java.base/jdk.internal.classfile.attribute
48+
* java.base/jdk.internal.classfile.constantpool
49+
* java.base/jdk.internal.classfile.java.lang.constant
50+
* java.base/jdk.internal.module
4651
* @library /test/lib
47-
* @modules java.base/jdk.internal.module
48-
* @build jdk.test.lib.util.JarUtils
52+
* @build jdk.test.lib.util.JarUtils jdk.test.lib.util.ModuleInfoWriter
4953
* @build TestLoginModule JaasClient
5054
* @run main JaasModularClientTest false
5155
* @run main JaasModularClientTest true

‎test/jdk/javax/security/auth/login/modules/JaasModularDefaultHandlerTest.java

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2016, 2017, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2016, 2023, 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
@@ -32,19 +32,23 @@
3232
import java.io.OutputStream;
3333
import java.lang.module.ModuleDescriptor;
3434
import java.lang.module.ModuleDescriptor.Builder;
35-
import jdk.internal.module.ModuleInfoWriter;
3635
import java.util.stream.Stream;
3736
import jdk.test.lib.process.ProcessTools;
3837
import jdk.test.lib.process.OutputAnalyzer;
3938
import jdk.test.lib.util.JarUtils;
39+
import jdk.test.lib.util.ModuleInfoWriter;
4040

4141
/*
4242
* @test
4343
* @bug 8151654 8183310
4444
* @summary Test default callback handler with all possible modular option.
45+
* @modules java.base/jdk.internal.classfile
46+
* java.base/jdk.internal.classfile.attribute
47+
* java.base/jdk.internal.classfile.constantpool
48+
* java.base/jdk.internal.classfile.java.lang.constant
49+
* java.base/jdk.internal.module
4550
* @library /test/lib
46-
* @modules java.base/jdk.internal.module
47-
* @build jdk.test.lib.util.JarUtils
51+
* @build jdk.test.lib.util.JarUtils jdk.test.lib.util.ModuleInfoWriter
4852
* @build TestCallbackHandler TestLoginModule JaasClientWithDefaultHandler
4953
* @run main JaasModularDefaultHandlerTest
5054
*/

‎test/jdk/jdk/modules/incubator/ServiceBinding.java

+8-5
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, 2023, 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
@@ -24,9 +24,13 @@
2424
/**
2525
* @test
2626
* @bug 8233922
27-
* @modules java.base/jdk.internal.module
27+
* @modules java.base/jdk.internal.classfile
28+
* java.base/jdk.internal.classfile.attribute
29+
* java.base/jdk.internal.classfile.constantpool
30+
* java.base/jdk.internal.classfile.java.lang.constant
31+
* java.base/jdk.internal.module
2832
* @library /test/lib
29-
* @build ServiceBinding TestBootLayer
33+
* @build ServiceBinding TestBootLayer jdk.test.lib.util.ModuleInfoWriter
3034
* @run testng ServiceBinding
3135
* @summary Test service binding with incubator modules
3236
*/
@@ -43,17 +47,16 @@
4347
import java.util.Set;
4448
import java.util.stream.Collectors;
4549
import java.util.stream.Stream;
46-
import java.util.stream.Stream;
4750

4851
import static java.lang.module.ModuleDescriptor.newModule;
4952

50-
import jdk.internal.module.ModuleInfoWriter;
5153
import jdk.internal.module.ModuleResolution;
5254

5355
import org.testng.annotations.Test;
5456

5557
import jdk.test.lib.process.ProcessTools;
5658
import jdk.test.lib.process.OutputAnalyzer;
59+
import jdk.test.lib.util.ModuleInfoWriter;
5760

5861
@Test
5962
public class ServiceBinding {

‎test/jdk/sun/tools/jcmd/TestProcessHelper.java

+9-3
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, 2023, 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,10 +41,10 @@
4141
import java.util.stream.Collectors;
4242
import java.util.stream.Stream;
4343

44-
import jdk.internal.module.ModuleInfoWriter;
4544
import jdk.test.lib.JDKToolFinder;
4645
import jdk.test.lib.process.ProcessTools;
4746
import jdk.test.lib.util.JarUtils;
47+
import jdk.test.lib.util.ModuleInfoWriter;
4848

4949
/*
5050
* @test
@@ -53,10 +53,16 @@
5353
* and checks that sun.tools.ProcessHelper.getMainClass(pid) method returns a correct main class. return a .
5454
*
5555
* @requires os.family == "linux"
56-
* @library /test/lib
5756
* @modules jdk.jcmd/sun.tools.common:+open
57+
* java.base/jdk.internal.classfile
58+
* java.base/jdk.internal.classfile.attribute
59+
* java.base/jdk.internal.classfile.constantpool
60+
* java.base/jdk.internal.classfile.java.lang.constant
5861
* java.base/jdk.internal.module
62+
* @library /test/lib
5963
* @build test.TestProcess
64+
* jdk.test.lib.util.JarUtils
65+
* jdk.test.lib.util.ModuleInfoWriter
6066
* @run main/othervm TestProcessHelper
6167
*/
6268
public class TestProcessHelper {

‎test/jdk/tools/jlink/JLinkNegativeTest.java

+9-7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, 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,15 +28,19 @@
2828
* @bug 8174718
2929
* @bug 8189671
3030
* @author Andrei Eremeev
31-
* @library ../lib
32-
* @modules java.base/jdk.internal.jimage
31+
* @modules java.base/jdk.internal.classfile
32+
* java.base/jdk.internal.classfile.attribute
33+
* java.base/jdk.internal.classfile.constantpool
34+
* java.base/jdk.internal.classfile.java.lang.constant
35+
* java.base/jdk.internal.jimage
3336
* java.base/jdk.internal.module
3437
* jdk.jdeps/com.sun.tools.classfile
3538
* jdk.jlink/jdk.tools.jlink.internal
3639
* jdk.jlink/jdk.tools.jmod
3740
* jdk.jlink/jdk.tools.jimage
3841
* jdk.compiler
39-
* @build tests.*
42+
* @library /test/lib ../lib
43+
* @build tests.* jdk.test.lib.util.ModuleInfoWriter
4044
* @run testng JLinkNegativeTest
4145
*/
4246

@@ -48,17 +52,15 @@
4852
import java.nio.file.FileVisitResult;
4953
import java.nio.file.Files;
5054
import java.nio.file.Path;
51-
import java.nio.file.Paths;
5255
import java.nio.file.SimpleFileVisitor;
5356
import java.nio.file.attribute.BasicFileAttributes;
5457
import java.util.Arrays;
55-
import java.util.Collections;
5658
import java.util.List;
5759
import java.util.Set;
5860
import java.util.jar.JarEntry;
5961
import java.util.jar.JarOutputStream;
6062

61-
import jdk.internal.module.ModuleInfoWriter;
63+
import jdk.test.lib.util.ModuleInfoWriter;
6264
import org.testng.SkipException;
6365
import org.testng.annotations.BeforeClass;
6466
import org.testng.annotations.Test;

‎src/java.base/share/classes/jdk/internal/module/ModuleInfoWriter.java ‎test/lib/jdk/test/lib/util/ModuleInfoWriter.java

+6-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
/*
2-
* Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2015, 2023, 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
66
* under the terms of the GNU General Public License version 2 only, as
7-
* published by the Free Software Foundation. Oracle designates this
8-
* particular file as subject to the "Classpath" exception as provided
9-
* by Oracle in the LICENSE file that accompanied this code.
7+
* published by the Free Software Foundation.
108
*
119
* This code is distributed in the hope that it will be useful, but WITHOUT
1210
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
@@ -22,7 +20,8 @@
2220
* or visit www.oracle.com if you need additional information or have any
2321
* questions.
2422
*/
25-
package jdk.internal.module;
23+
24+
package jdk.test.lib.util;
2625

2726
import java.io.IOException;
2827
import java.io.OutputStream;
@@ -42,6 +41,8 @@
4241
import jdk.internal.classfile.attribute.ModuleRequireInfo;
4342
import jdk.internal.classfile.attribute.ModuleTargetAttribute;
4443
import jdk.internal.classfile.constantpool.ModuleEntry;
44+
import jdk.internal.module.ModuleResolution;
45+
import jdk.internal.module.ModuleTarget;
4546

4647
/**
4748
* Utility class to write a ModuleDescriptor as a module-info.class.

0 commit comments

Comments
 (0)
Please sign in to comment.