We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f75526 commit 9e53d6dCopy full SHA for 9e53d6d
distribution/tools/launchers/src/test/java/org/elasticsearch/tools/launchers/JvmErgonomicsTests.java
@@ -19,6 +19,8 @@
19
20
package org.elasticsearch.tools.launchers;
21
22
+import org.junit.Before;
23
+
24
import java.io.IOException;
25
import java.util.Arrays;
26
import java.util.Collections;
@@ -41,6 +43,13 @@
41
43
42
44
public class JvmErgonomicsTests extends LaunchersTestCase {
45
46
+ @Before
47
+ public void setUp() {
48
+ assumeFalse("https://github.com/elastic/elasticsearch/issues/44669",
49
+ System.getProperty("os.name").contains("Win")
50
+ );
51
+ }
52
53
public void testExtractValidHeapSizeUsingXmx() throws InterruptedException, IOException {
54
assertThat(
55
JvmErgonomics.extractHeapSize(JvmErgonomics.finalJvmOptions(Collections.singletonList("-Xmx2g"))),
0 commit comments