easyice commented on issue #13116:
URL: https://github.com/apache/lucene/issues/13116#issuecomment-1962123759

   This is indeed a test bug, 9ab84f4be262d003781910c58751a503a92f725c just 
slightly changes the index size. There was a similar issue: 
https://github.com/apache/lucene/issues/11755, the `UncheckedIOException` might 
be throw by `BKDWriter` but not catch in this test case. This should likely be 
fixed e.g.
   
   
   
   ```diff
   @@ -364,7 +365,7 @@ public class TestIndexWriterOnDiskFull extends 
LuceneTestCase {
                  done = true;
                }
   
   -          } catch (IllegalStateException | IOException | 
MergePolicy.MergeException e) {
   +          } catch (IllegalStateException | IOException | 
MergePolicy.MergeException | UncheckedIOException e) {
                success = false;
                err = e;
                if (VERBOSE) {
   ```
   
   The `testAddDocumentOnDiskFull` should also have the same issue.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org
For additional commands, e-mail: issues-h...@lucene.apache.org

Reply via email to