test/jdk/com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File open Sdiff test/jdk/com/sun/management/HotSpotDiagnosticMXBean

test/jdk/com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java

Print this page


   1 /*
   2  * Copyright (c) 2013, 2017, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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 8028994
  27  * @author Staffan Larsen


  28  * @library /lib/testlibrary
  29  * @modules jdk.attach/sun.tools.attach
  30  *          jdk.management
  31  * @build jdk.testlibrary.*
  32  * @run main CheckOrigin
  33  */
  34 
  35 import com.sun.management.HotSpotDiagnosticMXBean;
  36 import com.sun.management.VMOption;
  37 import com.sun.management.VMOption.Origin;
  38 import com.sun.tools.attach.VirtualMachine;
  39 import java.io.File;
  40 import java.io.FileWriter;
  41 import java.io.InputStream;
  42 import java.io.PrintWriter;
  43 import java.lang.management.ManagementFactory;
  44 import java.util.Map;
  45 import jdk.testlibrary.ProcessTools;
  46 import sun.tools.attach.HotSpotVirtualMachine;
  47 


   1 /*
   2  * Copyright (c) 2013, 2018, Oracle and/or its affiliates. All rights reserved.
   3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4  *
   5  * This code is free software; you can redistribute it and/or modify it
   6  * under the terms of the GNU General Public License version 2 only, as
   7  * published by the Free Software Foundation.
   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 8028994
  27  * @author Staffan Larsen
  28  * @comment Graal does not support CMS
  29  * @requires !vm.graal.enabled
  30  * @library /lib/testlibrary
  31  * @modules jdk.attach/sun.tools.attach
  32  *          jdk.management
  33  * @build jdk.testlibrary.*
  34  * @run main CheckOrigin
  35  */
  36 
  37 import com.sun.management.HotSpotDiagnosticMXBean;
  38 import com.sun.management.VMOption;
  39 import com.sun.management.VMOption.Origin;
  40 import com.sun.tools.attach.VirtualMachine;
  41 import java.io.File;
  42 import java.io.FileWriter;
  43 import java.io.InputStream;
  44 import java.io.PrintWriter;
  45 import java.lang.management.ManagementFactory;
  46 import java.util.Map;
  47 import jdk.testlibrary.ProcessTools;
  48 import sun.tools.attach.HotSpotVirtualMachine;
  49 


test/jdk/com/sun/management/HotSpotDiagnosticMXBean/CheckOrigin.java
Index Unified diffs Context diffs Sdiffs Frames Patch New Old Previous File Next File