< prev index next >

jdk/test/tools/launcher/modules/addexports/AddExportsTestWarningError.java

Print this page
rev 17234 : 8180724: move ModuleInfoMaker to the top level testlibrary
Reviewed-by: duke

*** 23,35 **** /** * @test * @bug 8168836 * @summary Basic argument validation for --add-exports ! * @library /lib/testlibrary * @modules jdk.compiler - * @build AddExportsTestWarningError CompilerUtils ModuleInfoMaker * @build jdk.testlibrary.* * @run testng AddExportsTestWarningError */ import java.io.BufferedOutputStream; --- 23,34 ---- /** * @test * @bug 8168836 * @summary Basic argument validation for --add-exports ! * @library /lib/testlibrary /test/lib * @modules jdk.compiler * @build jdk.testlibrary.* * @run testng AddExportsTestWarningError */ import java.io.BufferedOutputStream;
*** 38,56 **** import java.nio.file.Path; import java.nio.file.Paths; import java.util.Arrays; import java.util.stream.Stream; import jdk.testlibrary.OutputAnalyzer; import static jdk.testlibrary.ProcessTools.*; import org.testng.annotations.BeforeTest; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import static org.testng.Assert.*; - @Test public class AddExportsTestWarningError { private static final Path MODS_DIR = Paths.get("mods"); private static final Path SRC_DIR = Paths.get("src"); --- 37,55 ---- import java.nio.file.Path; import java.nio.file.Paths; import java.util.Arrays; import java.util.stream.Stream; + import jdk.test.lib.compiler.ModuleInfoMaker; import jdk.testlibrary.OutputAnalyzer; import static jdk.testlibrary.ProcessTools.*; import org.testng.annotations.BeforeTest; import org.testng.annotations.DataProvider; import org.testng.annotations.Test; import static org.testng.Assert.*; @Test public class AddExportsTestWarningError { private static final Path MODS_DIR = Paths.get("mods"); private static final Path SRC_DIR = Paths.get("src");
< prev index next >