test/tools/javac/lambdaShapes/org/openjdk/tests/vm/FDSeparateCompilationTest.java

changeset 1520
5c956be64b9e
parent 1448
7d34e91f66bb
child 2525
2eb010b6cb22
equal deleted inserted replaced
1519:97bd5e7151bc 1520:5c956be64b9e
1 /* 1 /*
2 * Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Oracle designates this 7 * published by the Free Software Foundation. Oracle designates this
20 * 20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any 22 * or visit www.oracle.com if you need additional information or have any
23 * questions. 23 * questions.
24 */ 24 */
25
26 // this test has been disabled because of timeout issues.
27 // see JDK-8006746
25 28
26 package org.openjdk.tests.vm; 29 package org.openjdk.tests.vm;
27 30
28 import java.util.*; 31 import java.util.*;
29 32
89 } 92 }
90 93
91 private static final ConcreteMethod canonicalMethod = new ConcreteMethod( 94 private static final ConcreteMethod canonicalMethod = new ConcreteMethod(
92 "String", "m", "returns " + EMPTY + ";", AccessFlag.PUBLIC); 95 "String", "m", "returns " + EMPTY + ";", AccessFlag.PUBLIC);
93 96
94 @Test(groups = "vm", dataProvider = "allShapes") 97 @Test(enabled = false, groups = "vm", dataProvider = "allShapes")
95 public void separateCompilationTest(Hierarchy hs) { 98 public void separateCompilationTest(Hierarchy hs) {
96 ClassCase cc = hs.root; 99 ClassCase cc = hs.root;
97 Type type = sourceTypeFrom(hs.root); 100 Type type = sourceTypeFrom(hs.root);
98 101
99 Class specimen = null; 102 Class specimen = null;

mercurial