test/tools/pack200/Pack200Test.java

Print this page

        

*** 1,7 **** /* ! * Copyright (c) 2007, 2013, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2007, 2014, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 124,135 **** * @param args the command line arguments */ public static void main(String[] args) throws IOException { // select the jars carefully, adding more jars will increase the // testing time, especially for jprt. ! jarList.add(Utils.locateJar("tools.jar")); ! jarList.add(Utils.locateJar("rt.jar")); jarList.add(Utils.locateJar("golden.jar")); System.out.println(jarList); doPackUnpack(); } } --- 124,134 ---- * @param args the command line arguments */ public static void main(String[] args) throws IOException { // select the jars carefully, adding more jars will increase the // testing time, especially for jprt. ! jarList.add(Utils.createRtJar()); jarList.add(Utils.locateJar("golden.jar")); System.out.println(jarList); doPackUnpack(); } }