< prev index next >

test/serviceability/dcmd/vm/SetVMFlagTest.java

Print this page




   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 import com.oracle.java.testlibrary.OutputAnalyzer;
  25 import com.oracle.java.testlibrary.dcmd.CommandExecutor;
  26 import com.oracle.java.testlibrary.dcmd.JMXExecutor;
  27 import org.testng.annotations.Test;
  28 import static org.testng.Assert.*;
  29 
  30 /*
  31  * @test
  32  * @bug 8054890
  33  * @summary Test of VM.set_flag diagnostic command
  34  * @library /testlibrary
  35  * @build com.oracle.java.testlibrary.*
  36  * @build com.oracle.java.testlibrary.dcmd.*
  37  * @run testng SetVMFlagTest
  38  */
  39 
  40 public class SetVMFlagTest {
  41     private static final String MANAGEABLE_PATTERN = "\\s*bool\\s+(\\S+)\\s+[\\:]?=\\s+" +
  42                                                      "(.*?)\\s+\\{manageable\\}";
  43     private static final String IMMUTABLE_PATTERN = "\\s*uintx\\s+(\\S+)\\s+[\\:]?=\\s+" +
  44                                                     "(.*?)\\s+\\{product\\}";
  45 
  46     public void run(CommandExecutor executor) {
  47         setMutableFlag(executor);
  48         setMutableFlagWithInvalidValue(executor);
  49         setImmutableFlag(executor);
  50         setNonExistingFlag(executor);
  51     }
  52 
  53     @Test
  54     public void jmx() {
  55         run(new JMXExecutor());
  56     }




   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 import jdk.test.lib.OutputAnalyzer;
  25 import jdk.test.lib.dcmd.CommandExecutor;
  26 import jdk.test.lib.dcmd.JMXExecutor;
  27 import org.testng.annotations.Test;
  28 import static org.testng.Assert.*;
  29 
  30 /*
  31  * @test
  32  * @bug 8054890
  33  * @summary Test of VM.set_flag diagnostic command
  34  * @library /testlibrary
  35  * @build jdk.test.lib.*
  36  * @build jdk.test.lib.dcmd.*
  37  * @run testng SetVMFlagTest
  38  */
  39 
  40 public class SetVMFlagTest {
  41     private static final String MANAGEABLE_PATTERN = "\\s*bool\\s+(\\S+)\\s+[\\:]?=\\s+" +
  42                                                      "(.*?)\\s+\\{manageable\\}";
  43     private static final String IMMUTABLE_PATTERN = "\\s*uintx\\s+(\\S+)\\s+[\\:]?=\\s+" +
  44                                                     "(.*?)\\s+\\{product\\}";
  45 
  46     public void run(CommandExecutor executor) {
  47         setMutableFlag(executor);
  48         setMutableFlagWithInvalidValue(executor);
  49         setImmutableFlag(executor);
  50         setNonExistingFlag(executor);
  51     }
  52 
  53     @Test
  54     public void jmx() {
  55         run(new JMXExecutor());
  56     }


< prev index next >