You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2016/08/18 13:53:21 UTC

lucene-solr:master: LUCENE-7409: Disable test also on master

Repository: lucene-solr
Updated Branches:
  refs/heads/master a98a6c36f -> de71ed740


LUCENE-7409: Disable test also on master


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/de71ed74
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/de71ed74
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/de71ed74

Branch: refs/heads/master
Commit: de71ed740d989599cf736dc7e4392b75251815c7
Parents: a98a6c3
Author: Uwe Schindler <us...@apache.org>
Authored: Thu Aug 18 15:53:10 2016 +0200
Committer: Uwe Schindler <us...@apache.org>
Committed: Thu Aug 18 15:53:10 2016 +0200

----------------------------------------------------------------------
 .../core/src/test/org/apache/lucene/store/TestMmapDirectory.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/de71ed74/lucene/core/src/test/org/apache/lucene/store/TestMmapDirectory.java
----------------------------------------------------------------------
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 5790e05..098fd44 100644
--- a/lucene/core/src/test/org/apache/lucene/store/TestMmapDirectory.java
+++ b/lucene/core/src/test/org/apache/lucene/store/TestMmapDirectory.java
@@ -22,7 +22,7 @@ import java.nio.file.Path;
 import java.util.Random;
 import java.util.concurrent.CountDownLatch;
 
-// import org.junit.Ignore;
+import org.junit.Ignore;
 
 /**
  * Tests MMapDirectory
@@ -43,7 +43,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"));