jdk/test/tools/pack200/PackageVersionTest.java
author ksrini
Thu, 14 Oct 2010 09:36:05 -0700
changeset 6891 f8a528363fa5
parent 6314 8ab691ddb904
child 12544 5768f2e096de
permissions -rw-r--r--
6991164: pack source needs vendor rebranding changes (jdk7 only) Reviewed-by: ohair, jrose
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
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     2
/*
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     3
 * Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     4
 * 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
     5
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
     6
 * 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
     7
 * 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
     8
 * 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
     9
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    10
 * 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
    11
 * 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
    12
 * 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
    13
 * 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
    14
 * accompanied this code).
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    15
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    16
 * 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
    17
 * 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
    18
 * 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
    19
 *
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    20
 * 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
    21
 * 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
    22
 * questions.
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    23
 */
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    24
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    25
/*
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    26
 * @test
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    27
 * @bug 6712743 6991164
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    28
 * @summary verify package versions
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    29
 * @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
    30
 * @run main PackageVersionTest
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    31
 * @author ksrini
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
    32
 */
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    33
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    34
import java.io.ByteArrayOutputStream;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    35
import java.io.Closeable;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    36
import java.io.File;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    37
import java.io.FileOutputStream;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    38
import java.io.IOException;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    39
import java.io.PrintStream;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    40
import java.util.jar.JarFile;
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;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    42
import java.util.jar.Pack200.Packer;
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    43
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
    44
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    45
public class PackageVersionTest {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    46
    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
    47
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_MAJOR_VERSION = 150;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    49
    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
    50
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_MAJOR_VERSION = 160;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    52
    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
    53
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    54
    public static void main(String... args) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    55
        if (!javaHome.getName().endsWith("jre")) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    56
            throw new RuntimeException("Error: requires an SDK to run");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    57
        }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    58
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    59
        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
    60
        createClassFile("Test5");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    61
        createClassFile("Test6");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    62
        createClassFile("Test7");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    63
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    64
        verify6991164();
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    65
        verifyPack("Test5.class", JAVA5_PACKAGE_MAJOR_VERSION,
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    66
                JAVA5_PACKAGE_MINOR_VERSION);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    67
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    68
        verifyPack("Test6.class", JAVA6_PACKAGE_MAJOR_VERSION,
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    69
                JAVA6_PACKAGE_MINOR_VERSION);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    70
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    71
        // TODO: change this to the java7 package version as needed.
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    72
        verifyPack("Test7.class", JAVA6_PACKAGE_MAJOR_VERSION,
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    73
                JAVA6_PACKAGE_MINOR_VERSION);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    74
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    75
        // 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
    76
        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
    77
                JAVA5_PACKAGE_MINOR_VERSION);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    78
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    79
6891
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    80
    static void verify6991164() {
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    81
        Unpacker unpacker = Pack200.newUnpacker();
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    82
        String versionStr = unpacker.toString();
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    83
        String expected = "Pack200, Vendor: " +
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    84
                System.getProperty("java.vendor") + ", Version: " +
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    85
                JAVA6_PACKAGE_MAJOR_VERSION + "." + JAVA6_PACKAGE_MINOR_VERSION;
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    86
        if (!versionStr.equals(expected)) {
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    87
            System.out.println("Expected: " + expected);
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    88
            System.out.println("Obtained: " + versionStr);
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    89
            throw new RuntimeException("did not get expected string " + expected);
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    90
        }
f8a528363fa5 6991164: pack source needs vendor rebranding changes (jdk7 only)
ksrini
parents: 6314
diff changeset
    91
    }
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    92
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    93
    static void createClassFile(String name) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    94
        createJavaFile(name);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    95
        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
    96
        String javacCmds[] = {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    97
            "-source",
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    98
            "5",
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
    99
            "-target",
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   100
            name.substring(name.length() - 1),
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   101
            name + ".java"
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   102
        };
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   103
        Utils.compiler(javacCmds);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   104
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   105
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   106
    static void createJavaFile(String name) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   107
        PrintStream ps = null;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   108
        FileOutputStream fos = null;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   109
        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
   110
        outputFile.delete();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   111
        try {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   112
            fos = new FileOutputStream(outputFile);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   113
            ps = new PrintStream(fos);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   114
            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
   115
        } catch (IOException ioe) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   116
            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
   117
        } finally {
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   118
            Utils.close(ps);
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   119
            Utils.close(fos);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   120
        }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   121
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   122
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   123
    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
   124
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   125
        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
   126
        jarFileName.delete();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   127
        String jargs[] = {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   128
            "cvf",
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   129
            jarFileName.getName(),
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   130
            filename
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   131
        };
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   132
        Utils.jar(jargs);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   133
        JarFile jfin = null;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   134
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   135
        try {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   136
            jfin = new JarFile(jarFileName);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   137
            Packer packer = Pack200.newPacker();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   138
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   139
            packer.pack(jfin, baos);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   140
            baos.flush();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   141
            baos.close();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   142
            byte[] buf = baos.toByteArray();
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   143
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   144
            int minor = buf[4] & 0x000000ff;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   145
            int major = buf[5] & 0x000000ff;
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   146
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   147
            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
   148
                String msg =
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   149
                        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
   150
                        expected_major, expected_minor,
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   151
                        major, minor);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   152
                throw new Error(msg);
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   153
            }
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
            System.out.println(filename + ": OK");
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   156
        } catch (IOException ioe) {
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   157
            throw new RuntimeException(ioe.getMessage());
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   158
        } finally {
6314
8ab691ddb904 6966737: (pack200) the pack200 regression tests need to be more robust.
ksrini
parents: 5811
diff changeset
   159
            Utils.close((Closeable) jfin);
5811
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   160
        }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   161
    }
f4d1f45c0058 6712743: pack200: should default to 150.7 pack format for classfiles without any classes.
ksrini
parents:
diff changeset
   162
}