Skip to content

Commit 06cb4d0

Browse files
authored
[CI] Mute FileWatcherTests (#83320)
For #81305, backport of #83319
1 parent d354c82 commit 06cb4d0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

server/src/test/java/org/elasticsearch/watcher/FileWatcherTests.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
*/
88
package org.elasticsearch.watcher;
99

10+
import org.apache.lucene.util.Constants;
1011
import org.apache.lucene.util.LuceneTestCase;
1112
import org.elasticsearch.core.internal.io.IOUtils;
1213
import org.elasticsearch.test.ESTestCase;
@@ -84,6 +85,8 @@ public List<String> notifications() {
8485
}
8586

8687
public void testSimpleFileOperations() throws IOException {
88+
assumeFalse("https://github.com/elastic/elasticsearch/issues/81305", Constants.MAC_OS_X);
89+
8790
Path tempDir = createTempDir();
8891
RecordingChangeListener changes = new RecordingChangeListener(tempDir);
8992
Path testFile = tempDir.resolve("test.txt");
@@ -263,6 +266,8 @@ public void testSimpleDirectoryOperations() throws IOException {
263266
}
264267

265268
public void testSimpleDirectoryOperationsWithContentChecking() throws IOException {
269+
assumeFalse("https://github.com/elastic/elasticsearch/issues/81305", Constants.MAC_OS_X);
270+
266271
final long startTime = System.currentTimeMillis();
267272

268273
Path tempDir = createTempDir();

0 commit comments

Comments
 (0)