Hi,
Please review this small update to the spliterator traversing test to remove
test cases for BitSet when the Integer.MAX_VALUE bit (or close to) is set.
diff -r 382f7f3a1888
test/java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java
--- a/test/java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java
Wed Nov 16 14:26:14 2016 -0800
+++ b/test/java/util/Spliterator/SpliteratorTraversingAndSplittingTest.java
Thu Nov 17 10:03:56 2016 -0800
@@ -892,9 +892,6 @@
{ "index 0", IntStream.of(0).toArray() },
{ "index 255", IntStream.of(255).toArray() },
{ "index 0 and 255", IntStream.of(0, 255).toArray() },
- { "index Integer.MAX_VALUE",
IntStream.of(Integer.MAX_VALUE).toArray() },
- { "index Integer.MAX_VALUE - 1",
IntStream.of(Integer.MAX_VALUE - 1).toArray() },
- { "index 0 and Integer.MAX_VALUE", IntStream.of(0,
Integer.MAX_VALUE).toArray() },
{ "every bit", IntStream.range(0, 255).toArray() },
{ "step 2", IntStream.range(0, 255).map(f -> f * 2).toArray()
},
{ "step 3", IntStream.range(0, 255).map(f -> f * 3).toArray()
},
Such cases are causing out of memory test failures (not reproduced when running
locally).
Separately, we need to refactor the spliterator traversing tests into a
separate library (which should anyway be done):
https://bugs.openjdk.java.net/browse/JDK-8169903
And then add specific BitSet tests with large memory requirements.
Thanks,
Paul.