< prev index next >

jdk/test/jdk/modules/scenarios/overlappingpackages/OverlappingPackagesTest.java

Print this page

        

*** 72,114 **** /** * Sanity check that the test runs without error. */ public void testNoOverlappingPackages() throws Exception { int exitValue ! = executeTestJava("-mp", MODS_DIR.toString(), "-m", "test/test.Main") .outputTo(System.out) .errorTo(System.err) .getExitValue(); assertTrue(exitValue == 0); } /** ! * Run the test with "-addmods misc", the misc module has package * jdk.internal.misc and so should overlap with the base module. */ public void testOverlapWithBaseModule() throws Exception { int exitValue ! = executeTestJava("-mp", MODS_DIR.toString(), ! "-addmods", "misc", "-m", "test/test.Main") .outputTo(System.out) .errorTo(System.err) .getExitValue(); assertTrue(exitValue != 0); } /** ! * Run the test with "-addmods m1,m2". Both modules have package p. */ public void testOverlap() throws Exception { int exitValue ! = executeTestJava("-mp", MODS_DIR.toString(), ! "-addmods", "m1,m2", "-m", "test/test.Main") .outputTo(System.out) .errorTo(System.err) .getExitValue(); --- 72,114 ---- /** * Sanity check that the test runs without error. */ public void testNoOverlappingPackages() throws Exception { int exitValue ! = executeTestJava("--module-path", MODS_DIR.toString(), "-m", "test/test.Main") .outputTo(System.out) .errorTo(System.err) .getExitValue(); assertTrue(exitValue == 0); } /** ! * Run the test with "--add-modules misc", the misc module has package * jdk.internal.misc and so should overlap with the base module. */ public void testOverlapWithBaseModule() throws Exception { int exitValue ! = executeTestJava("--module-path", MODS_DIR.toString(), ! "-add-modules", "misc", "-m", "test/test.Main") .outputTo(System.out) .errorTo(System.err) .getExitValue(); assertTrue(exitValue != 0); } /** ! * Run the test with "--add-modules m1,m2". Both modules have package p. */ public void testOverlap() throws Exception { int exitValue ! = executeTestJava("--module-path", MODS_DIR.toString(), ! "--add-modules", "m1,m2", "-m", "test/test.Main") .outputTo(System.out) .errorTo(System.err) .getExitValue();
< prev index next >