8318490: Increase timeout for JDK tests that are close to the limit when run with libgraal

Reviewed-by: dnsimon, never, thartmann
This commit is contained in:
Gergö Barany 2023-11-23 18:33:19 +00:00 committed by Tom Rodriguez
parent cb95e393b6
commit 6f263111a1
41 changed files with 41 additions and 41 deletions

View File

@ -27,7 +27,7 @@
* @summary Verifies that string intrinsics throw array out of bounds exceptions. * @summary Verifies that string intrinsics throw array out of bounds exceptions.
* @library /compiler/patches /test/lib * @library /compiler/patches /test/lib
* @build java.base/java.lang.Helper * @build java.base/java.lang.Helper
* @run main/othervm -Xbatch -XX:CompileThreshold=100 compiler.intrinsics.string.TestStringIntrinsicRangeChecks * @run main/othervm/timeout=300 -Xbatch -XX:CompileThreshold=100 compiler.intrinsics.string.TestStringIntrinsicRangeChecks
*/ */
package compiler.intrinsics.string; package compiler.intrinsics.string;

View File

@ -36,7 +36,7 @@ import compiler.vectorapi.reshape.utils.VectorReshapeHelper;
* @summary Test that vector cast intrinsics work as intended on avx1. * @summary Test that vector cast intrinsics work as intended on avx1.
* @requires vm.cpu.features ~= ".*avx.*" * @requires vm.cpu.features ~= ".*avx.*"
* @library /test/lib / * @library /test/lib /
* @run main compiler.vectorapi.reshape.TestVectorCastAVX1 * @run main/timeout=300 compiler.vectorapi.reshape.TestVectorCastAVX1
*/ */
public class TestVectorCastAVX1 { public class TestVectorCastAVX1 {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -36,7 +36,7 @@ import compiler.vectorapi.reshape.utils.VectorReshapeHelper;
* @summary Test that vector cast intrinsics work as intended on avx2. * @summary Test that vector cast intrinsics work as intended on avx2.
* @requires vm.cpu.features ~= ".*avx2.*" * @requires vm.cpu.features ~= ".*avx2.*"
* @library /test/lib / * @library /test/lib /
* @run main compiler.vectorapi.reshape.TestVectorCastAVX2 * @run main/timeout=300 compiler.vectorapi.reshape.TestVectorCastAVX2
*/ */
public class TestVectorCastAVX2 { public class TestVectorCastAVX2 {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -36,7 +36,7 @@ import compiler.vectorapi.reshape.utils.VectorReshapeHelper;
* @summary Test that vector cast intrinsics work as intended on avx512. * @summary Test that vector cast intrinsics work as intended on avx512.
* @requires vm.cpu.features ~= ".*avx512.*" * @requires vm.cpu.features ~= ".*avx512.*"
* @library /test/lib / * @library /test/lib /
* @run main compiler.vectorapi.reshape.TestVectorCastAVX512 * @run main/timeout=300 compiler.vectorapi.reshape.TestVectorCastAVX512
*/ */
public class TestVectorCastAVX512 { public class TestVectorCastAVX512 {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -36,7 +36,7 @@ import compiler.vectorapi.reshape.utils.VectorReshapeHelper;
* @summary Test that vector cast intrinsics work as intended on avx512bw. * @summary Test that vector cast intrinsics work as intended on avx512bw.
* @requires vm.cpu.features ~= ".*avx512bw.*" * @requires vm.cpu.features ~= ".*avx512bw.*"
* @library /test/lib / * @library /test/lib /
* @run main compiler.vectorapi.reshape.TestVectorCastAVX512BW * @run main/timeout=300 compiler.vectorapi.reshape.TestVectorCastAVX512BW
*/ */
public class TestVectorCastAVX512BW { public class TestVectorCastAVX512BW {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -36,7 +36,7 @@ import compiler.vectorapi.reshape.utils.VectorReshapeHelper;
* @summary Test that vector cast intrinsics work as intended on avx512dq. * @summary Test that vector cast intrinsics work as intended on avx512dq.
* @requires vm.cpu.features ~= ".*avx512dq.*" * @requires vm.cpu.features ~= ".*avx512dq.*"
* @library /test/lib / * @library /test/lib /
* @run main compiler.vectorapi.reshape.TestVectorCastAVX512DQ * @run main/timeout=300 compiler.vectorapi.reshape.TestVectorCastAVX512DQ
*/ */
public class TestVectorCastAVX512DQ { public class TestVectorCastAVX512DQ {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -36,7 +36,7 @@ import compiler.vectorapi.reshape.utils.VectorReshapeHelper;
* @summary Test that vector cast intrinsics work as intended on neon. * @summary Test that vector cast intrinsics work as intended on neon.
* @requires vm.cpu.features ~= ".*asimd.*" * @requires vm.cpu.features ~= ".*asimd.*"
* @library /test/lib / * @library /test/lib /
* @run main compiler.vectorapi.reshape.TestVectorCastNeon * @run main/timeout=300 compiler.vectorapi.reshape.TestVectorCastNeon
*/ */
public class TestVectorCastNeon { public class TestVectorCastNeon {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -36,7 +36,7 @@ import compiler.vectorapi.reshape.utils.VectorReshapeHelper;
* @summary Test that vector cast intrinsics work as intended on sve. * @summary Test that vector cast intrinsics work as intended on sve.
* @requires vm.cpu.features ~= ".*sve.*" * @requires vm.cpu.features ~= ".*sve.*"
* @library /test/lib / * @library /test/lib /
* @run main compiler.vectorapi.reshape.TestVectorCastSVE * @run main/timeout=300 compiler.vectorapi.reshape.TestVectorCastSVE
*/ */
public class TestVectorCastSVE { public class TestVectorCastSVE {
public static void main(String[] args) { public static void main(String[] args) {

View File

@ -32,7 +32,7 @@
* Try to start the given number of threads starting simultaneously * Try to start the given number of threads starting simultaneously
* when notifyall() is signaled at the stopLine object. * when notifyall() is signaled at the stopLine object.
* *
* @run main/othervm nsk.stress.thread.thread007 500 2m 5s * @run main/othervm/timeout=300 nsk.stress.thread.thread007 500 2m 5s
*/ */
package nsk.stress.thread; package nsk.stress.thread;

View File

@ -33,7 +33,7 @@
* starting simultaneously when notifyall() is signaled at the * starting simultaneously when notifyall() is signaled at the
* stopLine object. * stopLine object.
* *
* @run main/othervm nsk.stress.thread.thread008 500 2m 5s * @run main/othervm/timeout=300 nsk.stress.thread.thread008 500 2m 5s
*/ */
package nsk.stress.thread; package nsk.stress.thread;

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Byte128VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Byte128VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Byte256VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Byte256VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Byte512VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Byte512VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Byte64VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Byte64VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation ByteMaxVectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation ByteMaxVectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Double128VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Double128VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Double256VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Double256VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Double512VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Double512VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Double64VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Double64VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation DoubleMaxVectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation DoubleMaxVectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Float128VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Float128VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Float256VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Float256VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Float512VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Float512VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Float64VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Float64VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation FloatMaxVectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation FloatMaxVectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Int128VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Int128VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Int256VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Int256VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Int512VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Int512VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Int64VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Int64VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation IntMaxVectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation IntMaxVectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Long128VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Long128VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Long256VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Long256VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Long512VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Long512VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Long64VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Long64VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation LongMaxVectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation LongMaxVectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Short128VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Short128VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Short256VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Short256VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Short512VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Short512VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation Short64VectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation Short64VectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation ShortMaxVectorTests * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation ShortMaxVectorTests
*/ */
// -- This file was mechanically generated: Do not edit! -- // // -- This file was mechanically generated: Do not edit! -- //

View File

@ -24,7 +24,7 @@
/* /*
* @test * @test
* @modules jdk.incubator.vector * @modules jdk.incubator.vector
* @run testng/othervm -ea -esa -Xbatch -XX:-TieredCompilation $vectorteststype$ * @run testng/othervm/timeout=300 -ea -esa -Xbatch -XX:-TieredCompilation $vectorteststype$
*/ */
#warn This file is preprocessed before being compiled #warn This file is preprocessed before being compiled