You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2020/06/21 08:04:28 UTC

[lucene-solr] branch master updated: LUCENE-9409: Disable TestAllFilesDetectTruncation temporarily.

This is an automated email from the ASF dual-hosted git repository.

jpountz pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new 541fc98  LUCENE-9409: Disable TestAllFilesDetectTruncation temporarily.
541fc98 is described below

commit 541fc984e90cdd86a70c467e8046cfcf76c12ffc
Author: Adrien Grand <jp...@gmail.com>
AuthorDate: Sun Jun 21 10:03:42 2020 +0200

    LUCENE-9409: Disable TestAllFilesDetectTruncation temporarily.
---
 .../test/org/apache/lucene/index/TestAllFilesDetectTruncation.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/lucene/core/src/test/org/apache/lucene/index/TestAllFilesDetectTruncation.java b/lucene/core/src/test/org/apache/lucene/index/TestAllFilesDetectTruncation.java
index 76b4b2f..ae3683b 100644
--- a/lucene/core/src/test/org/apache/lucene/index/TestAllFilesDetectTruncation.java
+++ b/lucene/core/src/test/org/apache/lucene/index/TestAllFilesDetectTruncation.java
@@ -29,14 +29,16 @@ import org.apache.lucene.store.IOContext;
 import org.apache.lucene.store.IndexInput;
 import org.apache.lucene.store.IndexOutput;
 import org.apache.lucene.util.LineFileDocs;
-import org.apache.lucene.util.LuceneTestCase.SuppressFileSystems;
 import org.apache.lucene.util.LuceneTestCase;
+import org.apache.lucene.util.LuceneTestCase.AwaitsFix;
+import org.apache.lucene.util.LuceneTestCase.SuppressFileSystems;
 import org.apache.lucene.util.TestUtil;
 
 /**
  * Test that a plain default detects index file truncation early (on opening a reader).
  */
 @SuppressFileSystems("ExtrasFS")
+@AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/LUCENE-9409")
 public class TestAllFilesDetectTruncation extends LuceneTestCase {
   public void test() throws Exception {
     Directory dir = newDirectory();