< prev index next >

test/jdk/tools/jlink/plugins/SystemModuleDescriptors/CompiledVersionTest.java

Print this page
rev 51638 : [mq]: 8210112


  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.File;
  25 import java.nio.file.Files;
  26 import java.nio.file.Path;
  27 import java.nio.file.Paths;
  28 import java.util.Arrays;
  29 import java.util.stream.Collectors;
  30 import java.util.stream.Stream;
  31 
  32 import jdk.test.lib.compiler.CompilerUtils;
  33 import jdk.test.lib.util.FileUtils;
  34 import static jdk.testlibrary.ProcessTools.*;
  35 
  36 
  37 import org.testng.annotations.BeforeTest;
  38 import org.testng.annotations.Test;
  39 import static org.testng.Assert.*;
  40 
  41 /**
  42  * @test
  43  * @library /lib/testlibrary /test/lib
  44  * @modules jdk.compiler jdk.jlink
  45  * @build jdk.test.lib.compiler.CompilerUtils
  46  *        jdk.test.lib.util.FileUtils
  47  *        jdk.test.lib.Platform
  48  *        CompiledVersionTest jdk.testlibrary.ProcessTools
  49  * @run testng CompiledVersionTest
  50  */
  51 
  52 public class CompiledVersionTest {
  53     private static final String JAVA_HOME = System.getProperty("java.home");
  54     private static final String TEST_SRC = System.getProperty("test.src");
  55 
  56     private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
  57     private static final Path MODS_DIR = Paths.get("mods");
  58     private static final Path IMAGE = Paths.get("image");
  59     private static final Path JMODS = Paths.get(JAVA_HOME, "jmods");
  60     private static final String MAIN_MID = "test/jdk.test.Main";
  61 
  62     // the names of the modules in this test
  63     private static String[] modules  = new String[] { "m1", "m2", "test"};
  64     private static String[] versions = new String[] { "1.0", "2-ea", "3-internal"};
  65 
  66 
  67     private static boolean hasJmods() {
  68         if (!Files.exists(JMODS)) {




  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  */
  23 
  24 import java.io.File;
  25 import java.nio.file.Files;
  26 import java.nio.file.Path;
  27 import java.nio.file.Paths;
  28 import java.util.Arrays;
  29 import java.util.stream.Collectors;
  30 import java.util.stream.Stream;
  31 
  32 import jdk.test.lib.compiler.CompilerUtils;
  33 import jdk.test.lib.util.FileUtils;
  34 import static jdk.test.lib.process.ProcessTools.*;
  35 
  36 
  37 import org.testng.annotations.BeforeTest;
  38 import org.testng.annotations.Test;
  39 import static org.testng.Assert.*;
  40 
  41 /**
  42  * @test
  43  * @library /test/lib
  44  * @modules jdk.compiler jdk.jlink
  45  * @build jdk.test.lib.compiler.CompilerUtils
  46  *        jdk.test.lib.util.FileUtils
  47  *        jdk.test.lib.Platform
  48  *        CompiledVersionTest jdk.test.lib.process.ProcessTools
  49  * @run testng CompiledVersionTest
  50  */
  51 
  52 public class CompiledVersionTest {
  53     private static final String JAVA_HOME = System.getProperty("java.home");
  54     private static final String TEST_SRC = System.getProperty("test.src");
  55 
  56     private static final Path SRC_DIR = Paths.get(TEST_SRC, "src");
  57     private static final Path MODS_DIR = Paths.get("mods");
  58     private static final Path IMAGE = Paths.get("image");
  59     private static final Path JMODS = Paths.get(JAVA_HOME, "jmods");
  60     private static final String MAIN_MID = "test/jdk.test.Main";
  61 
  62     // the names of the modules in this test
  63     private static String[] modules  = new String[] { "m1", "m2", "test"};
  64     private static String[] versions = new String[] { "1.0", "2-ea", "3-internal"};
  65 
  66 
  67     private static boolean hasJmods() {
  68         if (!Files.exists(JMODS)) {


< prev index next >