< prev index next >

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

Print this page
rev 51731 : imported patch 8210732


   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.testlibrary.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




   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


< prev index next >