Skip to content

Commit

Permalink
Merge pull request #281 from zakkak/2024-09-18-no-ser-test-in-24.1
Browse files Browse the repository at this point in the history
Update version range for Serialization tests
  • Loading branch information
Karm authored Sep 18, 2024
2 parents 2956944 + f54d795 commit ad85ce7
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit ad85ce7

Please sign in to comment.