From 8c129a0e19da8238e381f0554f0c25df25750571 Mon Sep 17 00:00:00 2001 From: Tanguy Leroux Date: Thu, 17 Dec 2020 11:50:30 +0100 Subject: [PATCH] Mute CacheServiceTests.testCacheSynchronization on Windows (#66502) Relates #65543 --- .../xpack/searchablesnapshots/cache/CacheServiceTests.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/x-pack/plugin/searchable-snapshots/src/test/java/org/elasticsearch/xpack/searchablesnapshots/cache/CacheServiceTests.java b/x-pack/plugin/searchable-snapshots/src/test/java/org/elasticsearch/xpack/searchablesnapshots/cache/CacheServiceTests.java index c4634dea6917a..7ca77cd49c31f 100644 --- a/x-pack/plugin/searchable-snapshots/src/test/java/org/elasticsearch/xpack/searchablesnapshots/cache/CacheServiceTests.java +++ b/x-pack/plugin/searchable-snapshots/src/test/java/org/elasticsearch/xpack/searchablesnapshots/cache/CacheServiceTests.java @@ -6,6 +6,7 @@ package org.elasticsearch.xpack.searchablesnapshots.cache; +import org.apache.lucene.util.Constants; import org.apache.lucene.util.LuceneTestCase; import org.elasticsearch.action.support.PlainActionFuture; import org.elasticsearch.common.UUIDs; @@ -62,6 +63,7 @@ public static void removeFileSystem() { } public void testCacheSynchronization() throws Exception { + assumeFalse("https://github.com/elastic/elasticsearch/issues/65543", Constants.WINDOWS); final int numShards = randomIntBetween(1, 3); final Index index = new Index(randomAlphaOfLength(5).toLowerCase(Locale.ROOT), UUIDs.randomBase64UUID(random())); final String snapshotUUID = UUIDs.randomBase64UUID(random());