< prev index next >

test/java/lang/invoke/common/test/java/lang/invoke/lib/Helper.java

Print this page
rev 17241 : 8180890: move c.o.testlibrary.jsr292 classes to jdk/test/java/lang/invoke directory
Reviewed-by: duke
   1 /*
   2  * Copyright (c) 2014, 2015, 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 package com.oracle.testlibrary.jsr292;

  24 
  25 import jdk.testlibrary.Asserts;
  26 
  27 import java.lang.invoke.MethodHandle;
  28 import java.lang.invoke.MethodHandles;
  29 import java.lang.invoke.MethodType;
  30 import java.lang.reflect.Array;
  31 import java.util.*;
  32 
  33 public class Helper {
  34     /** Flag for verbose output, true if {@code -Dverbose} specified */
  35     public static final boolean IS_VERBOSE
  36             = System.getProperty("verbose") != null;
  37     /**
  38      * Flag for thorough testing -- all test will be executed,
  39      * true if {@code -Dthorough} specified. */
  40     public static final boolean IS_THOROUGH
  41             = System.getProperty("thorough") != null;
  42     /** Random number generator w/ initial seed equal to {@code -Dseed} */
  43     public static final Random RNG;


   1 /*
   2  * Copyright (c) 2014, 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 package test.java.lang.invoke.lib;
  25 
  26 import jdk.testlibrary.Asserts;
  27 
  28 import java.lang.invoke.MethodHandle;
  29 import java.lang.invoke.MethodHandles;
  30 import java.lang.invoke.MethodType;
  31 import java.lang.reflect.Array;
  32 import java.util.*;
  33 
  34 public class Helper {
  35     /** Flag for verbose output, true if {@code -Dverbose} specified */
  36     public static final boolean IS_VERBOSE
  37             = System.getProperty("verbose") != null;
  38     /**
  39      * Flag for thorough testing -- all test will be executed,
  40      * true if {@code -Dthorough} specified. */
  41     public static final boolean IS_THOROUGH
  42             = System.getProperty("thorough") != null;
  43     /** Random number generator w/ initial seed equal to {@code -Dseed} */
  44     public static final Random RNG;


< prev index next >