< prev index next >

test/tools/jlink/IntegrationTest.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2015, 2017, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 23,32 **** --- 23,33 ---- import java.io.File; import java.io.FileReader; import java.io.IOException; import java.io.UncheckedIOException; + import java.nio.ByteOrder; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.ArrayList; import java.util.Collections;
*** 133,147 **** if (failed) { throw new Exception("Should have failed"); } System.out.println(jl); - JlinkConfiguration config - = new JlinkConfiguration(null, null, null, null); - - System.out.println(config); - Plugin p = Jlink.newPlugin("toto", Collections.emptyMap(), null); if (p != null) { throw new Exception("Plugin should be null"); } --- 134,143 ----
*** 161,171 **** Set<String> mods = new HashSet<>(); mods.add("java.management"); Set<String> limits = new HashSet<>(); limits.add("java.management"); JlinkConfiguration config = new Jlink.JlinkConfiguration(output, ! modulePaths, mods, limits, null); List<Plugin> lst = new ArrayList<>(); //Strip debug { --- 157,167 ---- Set<String> mods = new HashSet<>(); mods.add("java.management"); Set<String> limits = new HashSet<>(); limits.add("java.management"); JlinkConfiguration config = new Jlink.JlinkConfiguration(output, ! modulePaths, mods, limits, ByteOrder.nativeOrder()); List<Plugin> lst = new ArrayList<>(); //Strip debug {
< prev index next >