test/jdk/tools/pack200/PackageVersionTest.java
author lancea
Tue, 29 Oct 2019 14:22:18 -0400
changeset 58845 e492513d3630
parent 51047 860a3648c494
permissions -rw-r--r--
8231766: Files.copy and Files.move do not honor requested compression method when copying or moving within the same zip file Reviewed-by: clanger, bpb, alanb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     1
/*
51047
860a3648c494 8028563: Remove javac support for 6/1.6 source and target values
darcy
parents: 47216
diff changeset
     2
 * Copyright (c) 2010, 2018, Oracle and/or its affiliates. All rights reserved.
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     4
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     7
 * published by the Free Software Foundation.
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     8
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    13
 * accompanied this code).
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    14
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    18
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    21
 * questions.
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    22
 */
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    23
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    24
/*
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    25
 * @test
12857
0a5f341c2a28 7168401: pack200 does not produce a compatible pack file for JDK7 classes if indy is not present
ksrini
parents: 12544
diff changeset
    26
 * @bug 6712743 6991164 7168401
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    27
 * @summary verify package versions
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    28
 * @compile -XDignore.symbol.file Utils.java PackageVersionTest.java
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    29
 * @run main PackageVersionTest
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    30
 * @author ksrini
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    31
 */
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    32
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    33
import java.io.ByteArrayOutputStream;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    34
import java.io.Closeable;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    35
import java.io.File;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    36
import java.io.FileOutputStream;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    37
import java.io.IOException;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    38
import java.io.PrintStream;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    39
import java.util.jar.JarFile;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    40
import java.util.jar.Pack200;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    41
import java.util.jar.Pack200.Packer;
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    42
import java.util.jar.Pack200.Unpacker;
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    43
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    44
public class PackageVersionTest {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    45
    private static final File  javaHome = new File(System.getProperty("java.home"));
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    46
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    47
    public final static int JAVA5_PACKAGE_MAJOR_VERSION = 150;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    48
    public final static int JAVA5_PACKAGE_MINOR_VERSION = 7;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    49
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    50
    public final static int JAVA6_PACKAGE_MAJOR_VERSION = 160;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    51
    public final static int JAVA6_PACKAGE_MINOR_VERSION = 1;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    52
12544
5768f2e096de 6981776: Pack200 must support -target 7 bytecodes
ksrini
parents: 6891
diff changeset
    53
    public final static int JAVA7_PACKAGE_MAJOR_VERSION = 170;
5768f2e096de 6981776: Pack200 must support -target 7 bytecodes
ksrini
parents: 6891
diff changeset
    54
    public final static int JAVA7_PACKAGE_MINOR_VERSION = 1;
5768f2e096de 6981776: Pack200 must support -target 7 bytecodes
ksrini
parents: 6891
diff changeset
    55
18594
b6a3c9f71ac8 8017463: [TEST_BUG] 2 tests from tools/pack200/ remain about 1 GB of data in work directory after execution
ksrini
parents: 12857
diff changeset
    56
    public static void main(String... args) throws IOException {
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    57
        File out = new File("test.pack");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    58
        createClassFile("Test6");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    59
        createClassFile("Test7");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    60
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    61
        verify6991164();
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    62
12857
0a5f341c2a28 7168401: pack200 does not produce a compatible pack file for JDK7 classes if indy is not present
ksrini
parents: 12544
diff changeset
    63
        // a jar file devoid of indy classes must generate 160.1 package file
0a5f341c2a28 7168401: pack200 does not produce a compatible pack file for JDK7 classes if indy is not present
ksrini
parents: 12544
diff changeset
    64
        verifyPack("Test7.class", JAVA6_PACKAGE_MAJOR_VERSION,
0a5f341c2a28 7168401: pack200 does not produce a compatible pack file for JDK7 classes if indy is not present
ksrini
parents: 12544
diff changeset
    65
                JAVA6_PACKAGE_MINOR_VERSION);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    66
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    67
        // test for resource file, ie. no class files
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    68
        verifyPack("Test6.java", JAVA5_PACKAGE_MAJOR_VERSION,
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    69
                JAVA5_PACKAGE_MINOR_VERSION);
18594
b6a3c9f71ac8 8017463: [TEST_BUG] 2 tests from tools/pack200/ remain about 1 GB of data in work directory after execution
ksrini
parents: 12857
diff changeset
    70
        Utils.cleanup();
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    71
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    72
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    73
    static void verify6991164() {
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    74
        Unpacker unpacker = Pack200.newUnpacker();
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    75
        String versionStr = unpacker.toString();
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    76
        String expected = "Pack200, Vendor: " +
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    77
                System.getProperty("java.vendor") + ", Version: " +
12857
0a5f341c2a28 7168401: pack200 does not produce a compatible pack file for JDK7 classes if indy is not present
ksrini
parents: 12544
diff changeset
    78
                JAVA7_PACKAGE_MAJOR_VERSION + "." + JAVA7_PACKAGE_MINOR_VERSION;
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    79
        if (!versionStr.equals(expected)) {
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    80
            System.out.println("Expected: " + expected);
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    81
            System.out.println("Obtained: " + versionStr);
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    82
            throw new RuntimeException("did not get expected string " + expected);
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    83
        }
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    84
    }
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    85
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    86
    static void createClassFile(String name) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    87
        createJavaFile(name);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    88
        String target = name.substring(name.length() - 1);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    89
        String javacCmds[] = {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    90
            "-source",
51047
860a3648c494 8028563: Remove javac support for 6/1.6 source and target values
darcy
parents: 47216
diff changeset
    91
            "7",
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    92
            "-target",
51047
860a3648c494 8028563: Remove javac support for 6/1.6 source and target values
darcy
parents: 47216
diff changeset
    93
            "7",
860a3648c494 8028563: Remove javac support for 6/1.6 source and target values
darcy
parents: 47216
diff changeset
    94
            "-Xlint:-options",
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    95
            name + ".java"
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    96
        };
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    97
        Utils.compiler(javacCmds);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    98
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    99
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   100
    static void createJavaFile(String name) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   101
        PrintStream ps = null;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   102
        FileOutputStream fos = null;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   103
        File outputFile = new File(name + ".java");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   104
        outputFile.delete();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   105
        try {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   106
            fos = new FileOutputStream(outputFile);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   107
            ps = new PrintStream(fos);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   108
            ps.format("public class %s {}", name);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   109
        } catch (IOException ioe) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   110
            throw new RuntimeException("creation of test file failed");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   111
        } finally {
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   112
            Utils.close(ps);
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   113
            Utils.close(fos);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   114
        }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   115
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   116
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   117
    static void verifyPack(String filename, int expected_major, int expected_minor) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   118
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   119
        File jarFileName = new File("test.jar");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   120
        jarFileName.delete();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   121
        String jargs[] = {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   122
            "cvf",
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   123
            jarFileName.getName(),
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   124
            filename
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   125
        };
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   126
        Utils.jar(jargs);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   127
        JarFile jfin = null;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   128
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   129
        try {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   130
            jfin = new JarFile(jarFileName);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   131
            Packer packer = Pack200.newPacker();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   132
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   133
            packer.pack(jfin, baos);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   134
            baos.flush();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   135
            baos.close();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   136
            byte[] buf = baos.toByteArray();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   137
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   138
            int minor = buf[4] & 0x000000ff;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   139
            int major = buf[5] & 0x000000ff;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   140
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   141
            if (major != expected_major || minor != expected_minor) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   142
                String msg =
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   143
                        String.format("test fails: expected:%d.%d but got %d.%d\n",
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   144
                        expected_major, expected_minor,
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   145
                        major, minor);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   146
                throw new Error(msg);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   147
            }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   148
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   149
            System.out.println(filename + ": OK");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   150
        } catch (IOException ioe) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   151
            throw new RuntimeException(ioe.getMessage());
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   152
        } finally {
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   153
            Utils.close((Closeable) jfin);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   154
        }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   155
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   156
}