You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2022/10/13 11:20:30 UTC

[lucene] branch main updated: Mark TestLongBitSet.testHugeCapacity @Monster as it requires a lot of memory (#11844)

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

rmuir pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/main by this push:
     new 5e26b36ac8d Mark TestLongBitSet.testHugeCapacity @Monster as it requires a lot of memory (#11844)
5e26b36ac8d is described below

commit 5e26b36ac8d200445cf1cbbe9bc95b5430af1918
Author: Robert Muir <rm...@apache.org>
AuthorDate: Thu Oct 13 07:20:21 2022 -0400

    Mark TestLongBitSet.testHugeCapacity @Monster as it requires a lot of memory (#11844)
    
    Closes #11842
---
 lucene/core/src/test/org/apache/lucene/util/TestLongBitSet.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/core/src/test/org/apache/lucene/util/TestLongBitSet.java b/lucene/core/src/test/org/apache/lucene/util/TestLongBitSet.java
index 24b2f5b8c52..a12d825192f 100644
--- a/lucene/core/src/test/org/apache/lucene/util/TestLongBitSet.java
+++ b/lucene/core/src/test/org/apache/lucene/util/TestLongBitSet.java
@@ -351,7 +351,7 @@ public class TestLongBitSet extends LuceneTestCase {
     assertFalse(newBits.get(1));
   }
 
-  @Nightly
+  @Monster("needs hundreds of MB of heap")
   public void testHugeCapacity() {
     long moreThanMaxInt = (long) Integer.MAX_VALUE + 5;