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 2014/06/18 22:07:12 UTC

svn commit: r1603618 - /lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/codecs/lucene3x/TestLucene3xPostingsFormat.java

Author: jpountz
Date: Wed Jun 18 20:07:12 2014
New Revision: 1603618

URL: http://svn.apache.org/r1603618
Log:
LUCENE-5773: Disable test temporarily.

Modified:
    lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/codecs/lucene3x/TestLucene3xPostingsFormat.java

Modified: lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/codecs/lucene3x/TestLucene3xPostingsFormat.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/codecs/lucene3x/TestLucene3xPostingsFormat.java?rev=1603618&r1=1603617&r2=1603618&view=diff
==============================================================================
--- lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/codecs/lucene3x/TestLucene3xPostingsFormat.java (original)
+++ lucene/dev/branches/branch_4x/lucene/core/src/test/org/apache/lucene/codecs/lucene3x/TestLucene3xPostingsFormat.java Wed Jun 18 20:07:12 2014
@@ -1,5 +1,7 @@
 package org.apache.lucene.codecs.lucene3x;
 
+import java.io.IOException;
+
 import org.apache.lucene.codecs.Codec;
 import org.apache.lucene.index.BasePostingsFormatTestCase;
 import org.apache.lucene.util.LuceneTestCase;
@@ -38,4 +40,10 @@ public class TestLucene3xPostingsFormat 
   protected Codec getCodec() {
     return codec;
   }
+
+  @AwaitsFix(bugUrl="https://issues.apache.org/jira/browse/LUCENE-5773")
+  @Override
+  public void testRamBytesUsed() throws IOException {
+    super.testRamBytesUsed();
+  }
 }