Skip to content

Commit 2c6726e

Browse files
committed
Disable failing test on jdk25
1 parent 6cd4b90 commit 2c6726e

File tree

4 files changed

+20
-0
lines changed

4 files changed

+20
-0
lines changed

health/health-checks/src/test/java/io/helidon/health/checks/MemoryHealthCheckTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
import org.junit.jupiter.api.BeforeEach;
2525
import org.junit.jupiter.api.Test;
26+
import org.junit.jupiter.api.condition.DisabledOnJre;
27+
import org.junit.jupiter.api.condition.JRE;
2628
import org.junit.jupiter.params.ParameterizedTest;
2729
import org.junit.jupiter.params.provider.Arguments;
2830
import org.junit.jupiter.params.provider.MethodSource;
@@ -32,6 +34,9 @@
3234
import static org.hamcrest.MatcherAssert.assertThat;
3335
import static org.hamcrest.Matchers.hasEntry;
3436

37+
@DisabledOnJre(
38+
value = JRE.OTHER,
39+
disabledReason = "https://github.com/helidon-io/helidon/issues/10152")
3540
class MemoryHealthCheckTest {
3641
private static final long MAX_MEMORY = 10000L;
3742
private static final long TOTAL_MEMORY_START = 5000L;

integrations/microstream/cache/src/test/java/io/helidon/integrations/microstream/cache/CacheTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,13 @@
2626
import one.microstream.cache.types.Cache;
2727
import one.microstream.cache.types.CacheConfiguration;
2828
import org.junit.jupiter.api.Test;
29+
import org.junit.jupiter.api.condition.DisabledOnJre;
30+
import org.junit.jupiter.api.condition.JRE;
2931
import org.junit.jupiter.api.io.TempDir;
3032

33+
@DisabledOnJre(
34+
value = JRE.OTHER,
35+
disabledReason = "https://github.com/helidon-io/helidon/issues/10152")
3136
class CacheTest {
3237

3338
@TempDir

integrations/microstream/cdi/src/test/java/io/helidon/integrations/microstream/cdi/MicrostreamExtensionTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,18 @@
2525
import org.junit.jupiter.api.AfterAll;
2626
import org.junit.jupiter.api.BeforeAll;
2727
import org.junit.jupiter.api.Test;
28+
import org.junit.jupiter.api.condition.DisabledOnJre;
29+
import org.junit.jupiter.api.condition.JRE;
2830
import org.junit.jupiter.api.io.TempDir;
2931

3032
import static org.hamcrest.MatcherAssert.assertThat;
3133
import static org.hamcrest.Matchers.equalTo;
3234
import static org.hamcrest.Matchers.notNullValue;
3335

3436
@HelidonTest
37+
@DisabledOnJre(
38+
value = JRE.OTHER,
39+
disabledReason = "https://github.com/helidon-io/helidon/issues/10152")
3540
class MicrostreamExtensionTest {
3641

3742
@TempDir

integrations/microstream/core/src/test/java/io/helidon/integrations/microstream/core/ConfigurationTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,18 @@
2626

2727
import one.microstream.storage.embedded.types.EmbeddedStorageManager;
2828
import org.junit.jupiter.api.Test;
29+
import org.junit.jupiter.api.condition.DisabledOnJre;
30+
import org.junit.jupiter.api.condition.JRE;
2931
import org.junit.jupiter.api.io.TempDir;
3032

3133
import static org.hamcrest.CoreMatchers.is;
3234
import static org.hamcrest.MatcherAssert.assertThat;
3335
import static org.hamcrest.text.StringContainsInOrder.stringContainsInOrder;
3436
import static org.junit.jupiter.api.Assertions.assertNotNull;
3537

38+
@DisabledOnJre(
39+
value = JRE.OTHER,
40+
disabledReason = "https://github.com/helidon-io/helidon/issues/10152")
3641
class ConfigurationTest {
3742

3843
@TempDir

0 commit comments

Comments
 (0)