< prev index next >

test/runtime/SharedArchiveFile/CdsSameObjectAlignment.java

Print this page
rev 8016 : [mq]: unique-cds

*** 1,7 **** /* ! * Copyright (c) 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) 2013, 2015, 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.
*** 51,64 **** String objectAlignmentArg = "-XX:ObjectAlignmentInBytes=" + objectAlignmentInBytes; System.out.println("dumpAndLoadSharedArchive(): objectAlignmentInBytes = " + objectAlignmentInBytes); // create shared archive ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( "-XX:+UnlockDiagnosticVMOptions", ! "-XX:SharedArchiveFile=./sample.jsa", "-Xshare:dump", objectAlignmentArg); OutputAnalyzer output = new OutputAnalyzer(pb.start()); output.shouldContain("Loading classes to share"); --- 51,65 ---- String objectAlignmentArg = "-XX:ObjectAlignmentInBytes=" + objectAlignmentInBytes; System.out.println("dumpAndLoadSharedArchive(): objectAlignmentInBytes = " + objectAlignmentInBytes); + String filename = "./CdsSameObjectAlignment" + objectAlignmentInBytes + ".jsa"; // create shared archive ProcessBuilder pb = ProcessTools.createJavaProcessBuilder( "-XX:+UnlockDiagnosticVMOptions", ! "-XX:SharedArchiveFile=" + filename, "-Xshare:dump", objectAlignmentArg); OutputAnalyzer output = new OutputAnalyzer(pb.start()); output.shouldContain("Loading classes to share");
*** 66,76 **** // run using the shared archive pb = ProcessTools.createJavaProcessBuilder( "-XX:+UnlockDiagnosticVMOptions", ! "-XX:SharedArchiveFile=./sample.jsa", "-Xshare:on", objectAlignmentArg, "-version"); output = new OutputAnalyzer(pb.start()); --- 67,77 ---- // run using the shared archive pb = ProcessTools.createJavaProcessBuilder( "-XX:+UnlockDiagnosticVMOptions", ! "-XX:SharedArchiveFile=" + filename, "-Xshare:on", objectAlignmentArg, "-version"); output = new OutputAnalyzer(pb.start());
< prev index next >