diff --git a/lucene/core/src/test/org/apache/lucene/store/TestMmapDirectory.java b/lucene/core/src/test/org/apache/lucene/store/TestMmapDirectory.java index b87a21bc9c9..c32278bdae7 100644 --- a/lucene/core/src/test/org/apache/lucene/store/TestMmapDirectory.java +++ b/lucene/core/src/test/org/apache/lucene/store/TestMmapDirectory.java @@ -21,7 +21,7 @@ import java.io.IOException; import java.nio.file.Path; import java.util.concurrent.CountDownLatch; -// import org.junit.Ignore; +import org.junit.Ignore; /** * Tests MMapDirectory @@ -42,7 +42,7 @@ public class TestMmapDirectory extends BaseDirectoryTestCase { MMapDirectory.UNMAP_SUPPORTED); } - // TODO: @Ignore("This test is for JVM testing purposes. There are no guarantees that it may not fail with SIGSEGV!") + @Ignore("This test is for JVM testing purposes. There are no guarantees that it may not fail with SIGSEGV!") public void testAceWithThreads() throws Exception { for (int iter = 0; iter < 10; iter++) { Directory dir = getDirectory(createTempDir("testAceWithThreads"));