< prev index next >

test/jdk/java/lang/invoke/MethodHandles/CatchExceptionTest.java

Print this page
rev 51789 : [mq]: asserts


   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.MethodHandles;
  25 
  26 import jdk.test.lib.TimeLimitedRunner;
  27 import jdk.testlibrary.Asserts;
  28 import jdk.test.lib.Utils;
  29 import test.java.lang.invoke.lib.CodeCacheOverflowProcessor;
  30 import test.java.lang.invoke.lib.Helper;
  31 
  32 import java.lang.invoke.MethodHandle;
  33 import java.lang.invoke.MethodHandles;
  34 import java.lang.invoke.MethodType;
  35 import java.lang.reflect.Array;
  36 import java.util.ArrayList;
  37 import java.util.Arrays;
  38 import java.util.Collections;
  39 import java.util.List;
  40 import java.util.Objects;
  41 import java.util.function.BiFunction;
  42 import java.util.function.Function;
  43 import java.util.function.Supplier;
  44 
  45 /* @test
  46  * @library /lib/testlibrary /java/lang/invoke/common /test/lib
  47  * @build jdk.test.lib.TimeLimitedRunner
  48  * @compile CatchExceptionTest.java
  49  * @run main/othervm -esa test.java.lang.invoke.MethodHandles.CatchExceptionTest
  50  * @key intermittent randomness
  51  */
  52 public class CatchExceptionTest {
  53     private static final List<Class<?>> ARGS_CLASSES;
  54     protected static final int MAX_ARITY = Helper.MAX_ARITY - 1;
  55 
  56     static {
  57         Class<?> classes[] = {
  58                 Object.class,
  59                 long.class,
  60                 int.class,
  61                 byte.class,
  62                 Integer[].class,
  63                 double[].class,
  64                 String.class,
  65         };
  66         ARGS_CLASSES = Collections.unmodifiableList(




   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.MethodHandles;
  25 
  26 import jdk.test.lib.TimeLimitedRunner;
  27 import jdk.test.lib.Asserts;
  28 import jdk.test.lib.Utils;
  29 import test.java.lang.invoke.lib.CodeCacheOverflowProcessor;
  30 import test.java.lang.invoke.lib.Helper;
  31 
  32 import java.lang.invoke.MethodHandle;
  33 import java.lang.invoke.MethodHandles;
  34 import java.lang.invoke.MethodType;
  35 import java.lang.reflect.Array;
  36 import java.util.ArrayList;
  37 import java.util.Arrays;
  38 import java.util.Collections;
  39 import java.util.List;
  40 import java.util.Objects;
  41 import java.util.function.BiFunction;
  42 import java.util.function.Function;
  43 import java.util.function.Supplier;
  44 
  45 /* @test
  46  * @library /java/lang/invoke/common /test/lib
  47  * @build jdk.test.lib.TimeLimitedRunner
  48  * @compile CatchExceptionTest.java
  49  * @run main/othervm -esa test.java.lang.invoke.MethodHandles.CatchExceptionTest
  50  * @key intermittent randomness
  51  */
  52 public class CatchExceptionTest {
  53     private static final List<Class<?>> ARGS_CLASSES;
  54     protected static final int MAX_ARITY = Helper.MAX_ARITY - 1;
  55 
  56     static {
  57         Class<?> classes[] = {
  58                 Object.class,
  59                 long.class,
  60                 int.class,
  61                 byte.class,
  62                 Integer[].class,
  63                 double[].class,
  64                 String.class,
  65         };
  66         ARGS_CLASSES = Collections.unmodifiableList(


< prev index next >