9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
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 /*
25 * @test
26 * @summary Tests to verify jimage 'extract' action
27 * @library /test/lib
28 * @modules jdk.jlink/jdk.tools.jimage
29 * @build jdk.test.lib.Asserts
30 * @run main/othervm JImageExtractTest
31 */
32
33 import java.io.IOException;
34 import java.nio.file.Files;
35 import java.nio.file.Path;
36 import java.nio.file.Paths;
37 import java.nio.file.attribute.FileAttribute;
38 import java.nio.file.attribute.PosixFilePermission;
39 import java.nio.file.attribute.PosixFilePermissions;
40 import java.util.Arrays;
41 import java.util.HashSet;
42 import java.util.Set;
43 import java.util.stream.Collectors;
44
45 import static jdk.test.lib.Asserts.assertEquals;
46 import static jdk.test.lib.Asserts.assertTrue;
47
48 public class JImageExtractTest extends JImageCliTest {
49 public void testExtract() throws IOException {
|
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
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 /*
25 * @test
26 * @summary Tests to verify jimage 'extract' action
27 * @library /test/lib
28 * @modules jdk.jlink/jdk.tools.jimage
29 * @run main/othervm JImageExtractTest
30 */
31
32 import java.io.IOException;
33 import java.nio.file.Files;
34 import java.nio.file.Path;
35 import java.nio.file.Paths;
36 import java.nio.file.attribute.FileAttribute;
37 import java.nio.file.attribute.PosixFilePermission;
38 import java.nio.file.attribute.PosixFilePermissions;
39 import java.util.Arrays;
40 import java.util.HashSet;
41 import java.util.Set;
42 import java.util.stream.Collectors;
43
44 import static jdk.test.lib.Asserts.assertEquals;
45 import static jdk.test.lib.Asserts.assertTrue;
46
47 public class JImageExtractTest extends JImageCliTest {
48 public void testExtract() throws IOException {
|