Skip to content

Commit 58372cf

Browse files
committed
mute x-pack internal cluster test windows
tracking elastic#44610
1 parent c164f24 commit 58372cf

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

x-pack/plugin/ccr/build.gradle

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import org.elasticsearch.gradle.OS
2+
13
evaluationDependsOn(xpackModule('core'))
24

35
apply plugin: 'elasticsearch.esplugin'
@@ -22,6 +24,8 @@ task internalClusterTestNoSecurityManager(type: Test) {
2224
include noSecurityManagerITClasses
2325
systemProperty 'es.set.netty.runtime.available.processors', 'false'
2426
systemProperty 'tests.security.manager', 'false'
27+
// Disable tests on windows https://github.com/elastic/elasticsearch/issues/44610
28+
onlyIf { OS.WINDOWS.equals(OS.current()) == false }
2529
}
2630

2731
// Instead we create a separate task to run the
@@ -34,6 +38,8 @@ task internalClusterTest(type: Test) {
3438
include '**/*IT.class'
3539
exclude noSecurityManagerITClasses
3640
systemProperty 'es.set.netty.runtime.available.processors', 'false'
41+
// Disable tests on windows https://github.com/elastic/elasticsearch/issues/44610
42+
onlyIf { OS.WINDOWS.equals(OS.current()) == false }
3743
}
3844

3945
check.dependsOn internalClusterTest

0 commit comments

Comments
 (0)