< prev index next >

test/testlibrary_tests/ctw/JarsTest.java

Print this page
rev 10304 : [mq]: jake_pre_integ


   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, "};




   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/jdk.internal.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, "};


< prev index next >