Skip to content

Commit

Permalink
Mute FileWatcherTests (elastic#83319)
Browse files Browse the repository at this point in the history
  • Loading branch information
davidkyle authored Jan 31, 2022
1 parent c2162a1 commit 9a72476
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
*/
package org.elasticsearch.watcher;

import org.apache.lucene.util.Constants;
import org.apache.lucene.util.LuceneTestCase;
import org.elasticsearch.core.internal.io.IOUtils;
import org.elasticsearch.test.ESTestCase;
Expand Down Expand Up @@ -84,6 +85,8 @@ public List<String> notifications() {
}

public void testSimpleFileOperations() throws IOException {
assumeFalse("https://github.com/elastic/elasticsearch/issues/81305", Constants.MAC_OS_X);

Path tempDir = createTempDir();
RecordingChangeListener changes = new RecordingChangeListener(tempDir);
Path testFile = tempDir.resolve("test.txt");
Expand Down Expand Up @@ -263,6 +266,8 @@ public void testSimpleDirectoryOperations() throws IOException {
}

public void testSimpleDirectoryOperationsWithContentChecking() throws IOException {
assumeFalse("https://github.com/elastic/elasticsearch/issues/81305", Constants.MAC_OS_X);

final long startTime = System.currentTimeMillis();

Path tempDir = createTempDir();
Expand Down

0 comments on commit 9a72476

Please sign in to comment.