Skip to content

Commit

Permalink
Versions exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
Karm committed Sep 16, 2024
1 parent 907c2ab commit 0732e2b
Showing 1 changed file with 17 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -819,14 +819,27 @@ public void monitorFieldOffset(TestInfo testInfo, Apps app) throws IOException,

@Test
@Tag("builder-image")
@IfMandrelVersion(min = "23.1.5", inContainer = true)
public void forSerializationContainerTest(TestInfo testInfo) throws IOException, InterruptedException {
@IfMandrelVersion(min = "23.1.5", maxJDK = "21.999", inContainer = true)
public void forSerializationContainer21Test(TestInfo testInfo) throws IOException, InterruptedException {
forSerialization(testInfo, Apps.FOR_SERIALIZATION_BUILDER_IMAGE);
}

@Test
@IfMandrelVersion(min = "23.1.5")
public void forSerializationTest(TestInfo testInfo) throws IOException, InterruptedException {
@IfMandrelVersion(min = "23.1.5", maxJDK = "21.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)
public void forSerializationContainer23Test(TestInfo testInfo) throws IOException, InterruptedException {
forSerialization(testInfo, Apps.FOR_SERIALIZATION_BUILDER_IMAGE);
}

@Test
@IfMandrelVersion(min = "23.1.5", minJDK = "23")
public void forSerialization23Test(TestInfo testInfo) throws IOException, InterruptedException {
forSerialization(testInfo, Apps.FOR_SERIALIZATION);
}

Expand Down

0 comments on commit 0732e2b

Please sign in to comment.