< prev index next >

test/hotspot/jtreg/runtime/cds/dynamicArchive/WrongTopClasspath.java

Print this page




  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 import java.io.File;
  26 
  27 /*
  28  * @test
  29  * @summary correct classpath for bottom archive, but bad classpath for top archive
  30  * @requires vm.cds
  31  * @library /test/lib /test/hotspot/jtreg/runtime/appcds /test/hotspot/jtreg/runtime/appcds/test-classes
  32  * @build GenericTestApp sun.hotspot.WhiteBox
  33  * @run driver ClassFileInstaller -jar WhiteBox.jar sun.hotspot.WhiteBox
  34  * @run driver ClassFileInstaller -jar GenericTestApp.jar GenericTestApp
  35  * @run driver ClassFileInstaller -jar WrongJar.jar GenericTestApp
  36  * @run driver WrongTopClasspath
  37  */
  38 
  39 public class WrongTopClasspath extends DynamicArchiveTestBase {
  40 
  41     public static void main(String[] args) throws Exception {
  42         runTest(WrongTopClasspath::test);
  43     }
  44 
  45     static void test(String args[]) throws Exception {
  46         String topArchiveName = getNewArchiveName("top");
  47         String baseArchiveName = getNewArchiveName("base");
  48         dumpBaseArchive(baseArchiveName);
  49 
  50         String appJar    = ClassFileInstaller.getJarPath("GenericTestApp.jar");
  51         String wrongJar  = ClassFileInstaller.getJarPath("WrongJar.jar");




  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 import java.io.File;
  26 
  27 /*
  28  * @test
  29  * @summary correct classpath for bottom archive, but bad classpath for top archive
  30  * @requires vm.cds
  31  * @library /test/lib /test/hotspot/jtreg/runtime/cds /test/hotspot/jtreg/runtime/cds/test-classes
  32  * @build GenericTestApp sun.hotspot.WhiteBox
  33  * @run driver ClassFileInstaller -jar WhiteBox.jar sun.hotspot.WhiteBox
  34  * @run driver ClassFileInstaller -jar GenericTestApp.jar GenericTestApp
  35  * @run driver ClassFileInstaller -jar WrongJar.jar GenericTestApp
  36  * @run driver WrongTopClasspath
  37  */
  38 
  39 public class WrongTopClasspath extends DynamicArchiveTestBase {
  40 
  41     public static void main(String[] args) throws Exception {
  42         runTest(WrongTopClasspath::test);
  43     }
  44 
  45     static void test(String args[]) throws Exception {
  46         String topArchiveName = getNewArchiveName("top");
  47         String baseArchiveName = getNewArchiveName("base");
  48         dumpBaseArchive(baseArchiveName);
  49 
  50         String appJar    = ClassFileInstaller.getJarPath("GenericTestApp.jar");
  51         String wrongJar  = ClassFileInstaller.getJarPath("WrongJar.jar");


< prev index next >