test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Sdiff test/testlibrary_tests/whitebox/vm_flags

test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java

Print this page




   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 java.util.Objects;
  25 import java.util.function.BiConsumer;
  26 import java.util.function.Function;
  27 import sun.hotspot.WhiteBox;
  28 import sun.management.*;
  29 import com.sun.management.*;
  30 import com.oracle.java.testlibrary.*;
  31 
  32 public final class VmFlagTest<T> {
  33     public static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
  34 
  35     private static final String NONEXISTENT_FLAG = "NonexistentFlag";
  36     private final String flagName;
  37     private final BiConsumer<T, T> test;
  38     private final BiConsumer<String, T> set;
  39     private final Function<String, T> get;
  40     private final boolean isPositive;
  41 
  42     protected VmFlagTest(String flagName, BiConsumer<String, T> set,
  43             Function<String, T> get, boolean isPositive) {
  44         this.flagName = flagName;
  45         this.set = set;
  46         this.get = get;
  47         this.isPositive = isPositive;




   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 java.util.Objects;
  25 import java.util.function.BiConsumer;
  26 import java.util.function.Function;
  27 import jdk.testlib.WhiteBox;
  28 import sun.management.*;
  29 import com.sun.management.*;
  30 import com.oracle.java.testlibrary.*;
  31 
  32 public final class VmFlagTest<T> {
  33     public static final WhiteBox WHITE_BOX = WhiteBox.getWhiteBox();
  34 
  35     private static final String NONEXISTENT_FLAG = "NonexistentFlag";
  36     private final String flagName;
  37     private final BiConsumer<T, T> test;
  38     private final BiConsumer<String, T> set;
  39     private final Function<String, T> get;
  40     private final boolean isPositive;
  41 
  42     protected VmFlagTest(String flagName, BiConsumer<String, T> set,
  43             Function<String, T> get, boolean isPositive) {
  44         this.flagName = flagName;
  45         this.set = set;
  46         this.get = get;
  47         this.isPositive = isPositive;


test/testlibrary_tests/whitebox/vm_flags/VmFlagTest.java
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File