Skip to content

Commit 681d06d

Browse files
author
Ekaterina Pavlova
committedJul 15, 2020
8242388: compiler/graalunit/CoreTest.java timed out
Reviewed-by: kvn
1 parent 8906904 commit 681d06d

File tree

3 files changed

+43
-2
lines changed

3 files changed

+43
-2
lines changed
 

‎test/hotspot/jtreg/compiler/graalunit/CoreTest.java ‎test/hotspot/jtreg/compiler/graalunit/Core01Test.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
*
3535
* @run driver jdk.test.lib.FileInstaller ../../ProblemList-graal.txt ExcludeList.txt
3636
*
37-
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI compiler.graalunit.common.GraalUnitTestLauncher -prefix org.graalvm.compiler.core.test -exclude ExcludeList.txt -vmargs --add-opens=java.base/java.lang=ALL-UNNAMED
37+
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI compiler.graalunit.common.GraalUnitTestLauncher -prefix org.graalvm.compiler.core.test.[a-cA-C] -exclude ExcludeList.txt -vmargs --add-opens=java.base/java.lang=ALL-UNNAMED
3838
*/
3939

4040
/* DO NOT MODIFY THIS FILE. GENERATED BY generateTests.sh */
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
/*
2+
* Copyright (c) 2018, 2020, Oracle and/or its affiliates. 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 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+
/*
25+
* @test
26+
* @summary
27+
* @requires vm.jvmci
28+
* @requires !vm.graal.enabled
29+
* @modules jdk.internal.vm.compiler
30+
*
31+
* @library /test/lib /compiler/graalunit /
32+
*
33+
* @build compiler.graalunit.common.GraalUnitTestLauncher
34+
*
35+
* @run driver jdk.test.lib.FileInstaller ../../ProblemList-graal.txt ExcludeList.txt
36+
*
37+
* @run main/othervm -XX:+UnlockExperimentalVMOptions -XX:+EnableJVMCI compiler.graalunit.common.GraalUnitTestLauncher -prefix org.graalvm.compiler.core.test.[d-zD-Z] -exclude ExcludeList.txt -vmargs --add-opens=java.base/java.lang=ALL-UNNAMED
38+
*/
39+
40+
/* DO NOT MODIFY THIS FILE. GENERATED BY generateTests.sh */

‎test/hotspot/jtreg/compiler/graalunit/TestPackages.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ ApiDirectives org.graalvm.compiler.api.directives.test
33
Api org.graalvm.compiler.api.test
44
AsmAarch64 org.graalvm.compiler.asm.aarch64.test
55
AsmAmd64 org.graalvm.compiler.asm.amd64.test
6-
Core org.graalvm.compiler.core.test --requires !vm.graal.enabled --vmargs --add-opens=java.base/java.lang=ALL-UNNAMED
6+
Core01 org.graalvm.compiler.core.test.[a-cA-C] --requires !vm.graal.enabled --vmargs --add-opens=java.base/java.lang=ALL-UNNAMED
7+
Core02 org.graalvm.compiler.core.test.[d-zD-Z] --requires !vm.graal.enabled --vmargs --add-opens=java.base/java.lang=ALL-UNNAMED
78
EA org.graalvm.compiler.core.test.ea
89
CoreAmd64 org.graalvm.compiler.core.amd64.test
910
CoreAarch64 org.graalvm.compiler.core.aarch64.test

0 commit comments

Comments
 (0)
Please sign in to comment.