test/compiler/6895383/Test.java

Tue, 19 Jan 2010 10:25:54 -0800

author
kvn
date
Tue, 19 Jan 2010 10:25:54 -0800
changeset 1612
acebf2655d3a
parent 1535
f96a1a986f7b
child 1907
c18cbe5936b8
permissions
-rw-r--r--

6917931: compiler/6895383/Test.java don't compile due missed imports
Summary: Add missing imports.
Reviewed-by: never, twisti

     1 /*
     2  * Copyright 2009 Sun Microsystems, Inc.  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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    20  * CA 95054 USA or visit www.sun.com if you need additional information or
    21  * have any questions.
    22  *
    23  */
    25 /**
    26  * @test
    27  * @bug 6895383
    28  * @summary JCK test throws NPE for method compiled with Escape Analysis
    29  *
    30  * @run main/othervm -Xcomp Test
    31  */
    33 import java.util.*;
    34 import java.util.concurrent.*;
    36 public class Test {
    37     public static void main(String argv[]) {
    38         Test test = new Test();
    39         test.testRemove1_IndexOutOfBounds();
    40         test.testAddAll1_IndexOutOfBoundsException();
    41     }
    43     public void testRemove1_IndexOutOfBounds() {
    44         CopyOnWriteArrayList c = new CopyOnWriteArrayList();
    45     }
    47     public void testAddAll1_IndexOutOfBoundsException() {
    48         try {
    49             CopyOnWriteArrayList c = new CopyOnWriteArrayList();
    50             c.addAll(-1, new LinkedList()); // should throw IndexOutOfBoundsException
    51         } catch (IndexOutOfBoundsException e) {
    52         }
    53     }
    54 }

mercurial