1 /*
   2  * Copyright (c) 2013, 2015, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   8  *
   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  * @bug 8012447
  27  * @library /testlibrary /test/lib /testlibrary/ctw/src
  28  * @modules java.base/sun.misc
  29  *          java.base/sun.reflect
  30  *          java.compiler
  31  *          java.management
  32  *          jdk.jvmstat/sun.jvmstat.monitor
  33  * @build ClassFileInstaller jdk.test.lib.* sun.hotspot.tools.ctw.CompileTheWorld sun.hotspot.WhiteBox Foo Bar
  34  * @run main ClassFileInstaller sun.hotspot.WhiteBox Foo Bar
  35  *                              sun.hotspot.WhiteBox$WhiteBoxPermission
  36  * @run main JarsTest prepare
  37  * @run main/othervm -Xbootclasspath/a:. -XX:+UnlockDiagnosticVMOptions -XX:+WhiteBoxAPI -Dsun.hotspot.tools.ctw.logfile=ctw.log sun.hotspot.tools.ctw.CompileTheWorld foo.jar bar.jar
  38  * @run main JarsTest check ctw.log
  39  * @summary testing of CompileTheWorld :: jars
  40  * @author igor.ignatyev@oracle.com
  41  */
  42 
  43 import jdk.test.lib.OutputAnalyzer;
  44 
  45 public class JarsTest extends CtwTest {
  46     private static final String[] SHOULD_CONTAIN
  47             = {"# jar: foo.jar", "# jar: bar.jar",
  48                     "Done (4 classes, 12 methods, "};
  49 
  50     private JarsTest() {
  51         super(SHOULD_CONTAIN);
  52     }
  53 
  54     public static void main(String[] args) throws Exception {
  55         new JarsTest().run(args);
  56     }
  57 
  58     protected void prepare() throws Exception {
  59         ProcessBuilder pb = createJarProcessBuilder("cf", "foo.jar",
  60                 "Foo.class", "Bar.class");
  61         OutputAnalyzer output = new OutputAnalyzer(pb.start());
  62         dump(output, "ctw-foo.jar");
  63         output.shouldHaveExitValue(0);
  64 
  65         pb = createJarProcessBuilder("cf", "bar.jar", "Foo.class", "Bar.class");
  66         output = new OutputAnalyzer(pb.start());
  67         dump(output, "ctw-bar.jar");
  68         output.shouldHaveExitValue(0);
  69     }
  70 
  71 }