test/runtime/NMT/NMTWithCDS.java

Print this page




   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 8055061
  27  * @key nmt
  28  * @library /testlibrary
  29  * @ignore
  30  * @run main NMTWithCDS
  31  */
  32 import com.oracle.java.testlibrary.*;
  33 
  34 public class NMTWithCDS {
  35 
  36   public static void main(String[] args) throws Exception {
  37     ProcessBuilder pb;
  38     pb = ProcessTools.createJavaProcessBuilder("-XX:SharedArchiveFile=./sample.jsa", "-Xshare:dump");
  39     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  40     try {
  41       output.shouldContain("Loading classes to share");
  42       output.shouldHaveExitValue(0);
  43 
  44       pb = ProcessTools.createJavaProcessBuilder(
  45         "-XX:NativeMemoryTracking=detail", "-XX:SharedArchiveFile=./sample.jsa", "-Xshare:on", "-version");
  46       output = new OutputAnalyzer(pb.start());
  47       output.shouldContain("sharing");
  48       output.shouldHaveExitValue(0);
  49 


   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 8055061
  27  * @key nmt
  28  * @library /testlibrary

  29  * @run main NMTWithCDS
  30  */
  31 import com.oracle.java.testlibrary.*;
  32 
  33 public class NMTWithCDS {
  34 
  35   public static void main(String[] args) throws Exception {
  36     ProcessBuilder pb;
  37     pb = ProcessTools.createJavaProcessBuilder("-XX:SharedArchiveFile=./sample.jsa", "-Xshare:dump");
  38     OutputAnalyzer output = new OutputAnalyzer(pb.start());
  39     try {
  40       output.shouldContain("Loading classes to share");
  41       output.shouldHaveExitValue(0);
  42 
  43       pb = ProcessTools.createJavaProcessBuilder(
  44         "-XX:NativeMemoryTracking=detail", "-XX:SharedArchiveFile=./sample.jsa", "-Xshare:on", "-version");
  45       output = new OutputAnalyzer(pb.start());
  46       output.shouldContain("sharing");
  47       output.shouldHaveExitValue(0);
  48