File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
server/src/test/java/org/elasticsearch/plugins Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 8
8
9
9
package org .elasticsearch .plugins ;
10
10
11
+ import org .apache .lucene .util .Constants ;
11
12
import org .elasticsearch .common .Strings ;
12
13
import org .elasticsearch .test .ESTestCase ;
13
14
import org .elasticsearch .test .compiler .InMemoryJavaCompiler ;
@@ -465,8 +466,9 @@ public static String demo() {
465
466
JarUtils .createJarWithEntries (jar , jarEntries );
466
467
}
467
468
469
+ @ AwaitsFix (bugUrl = "https://github.com/elastic/elasticsearch/issues/91609" )
468
470
public void testServiceLoadingWithOptionalDependencies () throws Exception {
469
-
471
+ assumeFalse ( "Tests frequently fail on Windows" , Constants . WINDOWS );
470
472
try (UberModuleClassLoader loader = getServiceTestLoader (true )) {
471
473
472
474
Class <?> serviceCallerClass = loader .loadClass ("q.caller.ServiceCaller" );
@@ -483,8 +485,9 @@ public void testServiceLoadingWithOptionalDependencies() throws Exception {
483
485
}
484
486
}
485
487
488
+ @ AwaitsFix (bugUrl = "https://github.com/elastic/elasticsearch/issues/91609" )
486
489
public void testServiceLoadingWithoutOptionalDependencies () throws Exception {
487
-
490
+ assumeFalse ( "Tests frequently fail on Windows" , Constants . WINDOWS );
488
491
try (UberModuleClassLoader loader = getServiceTestLoader (false )) {
489
492
490
493
Class <?> serviceCallerClass = loader .loadClass ("q.caller.ServiceCaller" );
You can’t perform that action at this time.
0 commit comments