annotate test/compiler/6895383/Test.java @ 3237:399aa66d375e

Fixed a bug in which the valueEquals method was misused. The method does only check the equality of the node data and not full GVN equality by taking inputs and successors into account.
author Thomas Wuerthinger <thomas@wuerthinger.net>
date Wed, 27 Jul 2011 14:16:38 -0700
parents 0a8e0d4345b3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1100
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
1 /*
2042
0a8e0d4345b3 7010068: Update all 2010 Oracle-changed OpenJDK files to have the proper copyright dates - first pass
trims
parents: 1552
diff changeset
2 * Copyright (c) 2009, 2010, Oracle and/or its affiliates. All rights reserved.
1100
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
4 *
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
5 * This code is free software; you can redistribute it and/or modify it
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
6 * under the terms of the GNU General Public License version 2 only, as
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
7 * published by the Free Software Foundation.
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
8 *
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
9 * This code is distributed in the hope that it will be useful, but WITHOUT
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
12 * version 2 for more details (a copy is included in the LICENSE file that
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
13 * accompanied this code).
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
14 *
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
15 * You should have received a copy of the GNU General Public License version
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
16 * 2 along with this work; if not, write to the Free Software Foundation,
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
18 *
1552
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1177
diff changeset
19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1177
diff changeset
20 * or visit www.oracle.com if you need additional information or have any
c18cbe5936b8 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 1177
diff changeset
21 * questions.
1100
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
22 *
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
23 */
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
24
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
25 /**
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
26 * @test
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
27 * @bug 6895383
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
28 * @summary JCK test throws NPE for method compiled with Escape Analysis
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
29 *
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
30 * @run main/othervm -Xcomp Test
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
31 */
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
32
1177
acebf2655d3a 6917931: compiler/6895383/Test.java don't compile due missed imports
kvn
parents: 1100
diff changeset
33 import java.util.*;
acebf2655d3a 6917931: compiler/6895383/Test.java don't compile due missed imports
kvn
parents: 1100
diff changeset
34 import java.util.concurrent.*;
acebf2655d3a 6917931: compiler/6895383/Test.java don't compile due missed imports
kvn
parents: 1100
diff changeset
35
1100
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
36 public class Test {
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
37 public static void main(String argv[]) {
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
38 Test test = new Test();
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
39 test.testRemove1_IndexOutOfBounds();
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
40 test.testAddAll1_IndexOutOfBoundsException();
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
41 }
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
42
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
43 public void testRemove1_IndexOutOfBounds() {
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
44 CopyOnWriteArrayList c = new CopyOnWriteArrayList();
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
45 }
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
46
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
47 public void testAddAll1_IndexOutOfBoundsException() {
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
48 try {
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
49 CopyOnWriteArrayList c = new CopyOnWriteArrayList();
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
50 c.addAll(-1, new LinkedList()); // should throw IndexOutOfBoundsException
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
51 } catch (IndexOutOfBoundsException e) {
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
52 }
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
53 }
f96a1a986f7b 6895383: JCK test throws NPE for method compiled with Escape Analysis
kvn
parents:
diff changeset
54 }