BaurzhanSakhariev commented on a change in pull request #770: URL: https://github.com/apache/lucene/pull/770#discussion_r838341280
########## File path: lucene/core/src/test/org/apache/lucene/util/TestPriorityQueue.java ########## @@ -163,6 +164,57 @@ public void testInsertWithOverflow() { assertEquals((Integer) 2, pq.top()); } + public void testAddAllToEmptyQueue() { + Random random = random(); + int size = 10; + List<Integer> list = new ArrayList<>(); + for (int i = 0; i < size; i++) { + list.add(random.nextInt()); + } + IntegerQueue pq = new IntegerQueue(size); + pq.addAll(list); + + pq.checkValidity(); + assertOrderedWhenDrained(pq, list); + } + Review comment: looks like there are more things to make it work on windows (gradlew.bat check complains to the lack of perl) - I would rather hold on while I get another machine working - probably it's just local issue but would be better to run all checks. -- 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