From f54d795430144f36d1af64dc7bbe2c9a709d3468 Mon Sep 17 00:00:00 2001 From: Foivos Zakkak Date: Wed, 18 Sep 2024 09:12:18 +0300 Subject: [PATCH] Update version range for Serialization tests https://github.com/oracle/graal/pull/9091 Is only present in >= 24.2 and 23.1.xxx Both 24.0 and 24.1 don't include the fix and are expected to fail. --- .../org/graalvm/tests/integration/AppReproducersTest.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/testsuite/src/it/java/org/graalvm/tests/integration/AppReproducersTest.java b/testsuite/src/it/java/org/graalvm/tests/integration/AppReproducersTest.java index 1f6c0c9..7d5952c 100644 --- a/testsuite/src/it/java/org/graalvm/tests/integration/AppReproducersTest.java +++ b/testsuite/src/it/java/org/graalvm/tests/integration/AppReproducersTest.java @@ -819,26 +819,26 @@ public void monitorFieldOffset(TestInfo testInfo, Apps app) throws IOException, @Test @Tag("builder-image") - @IfMandrelVersion(min = "23.1.5", maxJDK = "21.0.999", inContainer = true) + @IfMandrelVersion(min = "23.1.5", max = "23.1.999", inContainer = true) public void forSerializationContainer21Test(TestInfo testInfo) throws IOException, InterruptedException { forSerialization(testInfo, Apps.FOR_SERIALIZATION_BUILDER_IMAGE); } @Test - @IfMandrelVersion(min = "23.1.5", maxJDK = "21.0.999") + @IfMandrelVersion(min = "23.1.5", max = "23.1.999") public void forSerialization21Test(TestInfo testInfo) throws IOException, InterruptedException { forSerialization(testInfo, Apps.FOR_SERIALIZATION); } @Test @Tag("builder-image") - @IfMandrelVersion(min = "23.1.5", minJDK = "23", inContainer = true) + @IfMandrelVersion(min = "24.2.0", inContainer = true) public void forSerializationContainer23Test(TestInfo testInfo) throws IOException, InterruptedException { forSerialization(testInfo, Apps.FOR_SERIALIZATION_BUILDER_IMAGE); } @Test - @IfMandrelVersion(min = "23.1.5", minJDK = "23") + @IfMandrelVersion(min = "24.2.0") public void forSerialization23Test(TestInfo testInfo) throws IOException, InterruptedException { forSerialization(testInfo, Apps.FOR_SERIALIZATION); }