File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
server/src/test/java/org/elasticsearch/watcher Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 7
7
*/
8
8
package org .elasticsearch .watcher ;
9
9
10
+ import org .apache .lucene .util .Constants ;
10
11
import org .apache .lucene .util .LuceneTestCase ;
11
12
import org .elasticsearch .core .internal .io .IOUtils ;
12
13
import org .elasticsearch .test .ESTestCase ;
@@ -84,6 +85,8 @@ public List<String> notifications() {
84
85
}
85
86
86
87
public void testSimpleFileOperations () throws IOException {
88
+ assumeFalse ("https://github.com/elastic/elasticsearch/issues/81305" , Constants .MAC_OS_X );
89
+
87
90
Path tempDir = createTempDir ();
88
91
RecordingChangeListener changes = new RecordingChangeListener (tempDir );
89
92
Path testFile = tempDir .resolve ("test.txt" );
@@ -263,6 +266,8 @@ public void testSimpleDirectoryOperations() throws IOException {
263
266
}
264
267
265
268
public void testSimpleDirectoryOperationsWithContentChecking () throws IOException {
269
+ assumeFalse ("https://github.com/elastic/elasticsearch/issues/81305" , Constants .MAC_OS_X );
270
+
266
271
final long startTime = System .currentTimeMillis ();
267
272
268
273
Path tempDir = createTempDir ();
You can’t perform that action at this time.
0 commit comments