Skip to content

Commit f46281a

Browse files
Muting test that fails on Windows (#48190)
This test has been failing very frequently on Windows checks for 7.4. We've also seen it for 7.x as well as for the new 7.5 tests. I'm muting during investigation so we can see if this is masking any other issues.
1 parent befc44c commit f46281a

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

distribution/tools/launchers/src/test/java/org/elasticsearch/tools/launchers/JvmErgonomicsTests.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ public void testExtractValidHeapSizeUsingMaxHeapSize() throws InterruptedExcepti
5656
}
5757

5858
public void testExtractValidHeapSizeNoOptionPresent() throws InterruptedException, IOException {
59+
// Muting on Windows, awaitsfix: https://github.com/elastic/elasticsearch/issues/47384
60+
assumeFalse(System.getProperty("os.name").startsWith("Windows"));
5961
assertThat(
6062
JvmErgonomics.extractHeapSize(JvmErgonomics.finalJvmOptions(Collections.emptyList())),
6163
greaterThan(0L));

0 commit comments

Comments
 (0)