ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/jsr166/jsr166/src/test/tck/ThreadLocalRandom8Test.java
(Generate patch)

Comparing jsr166/src/test/tck/ThreadLocalRandom8Test.java (file contents):
Revision 1.7 by jsr166, Wed Dec 31 19:05:43 2014 UTC vs.
Revision 1.8 by jsr166, Wed Dec 31 21:28:49 2014 UTC

# Line 119 | Line 119 | public class ThreadLocalRandom8Test exte
119          for (int least = -15485867; least < MAX_INT_BOUND; least += 524959) {
120              for (int bound = least + 2; bound > least && bound < MAX_INT_BOUND; bound += 67867967) {
121                  final int lo = least, hi = bound;
122 <                r.ints(size, lo, hi).parallel().
123 <                    forEach(x -> {if (x < lo || x >= hi)
124 <                                fails.getAndIncrement(); });
122 >                r.ints(size, lo, hi).parallel().forEach(
123 >                    x -> {
124 >                        if (x < lo || x >= hi)
125 >                            fails.getAndIncrement(); });
126              }
127          }
128          assertEquals(0, fails.get());
# Line 137 | Line 138 | public class ThreadLocalRandom8Test exte
138          for (long least = -86028121; least < MAX_LONG_BOUND; least += 1982451653L) {
139              for (long bound = least + 2; bound > least && bound < MAX_LONG_BOUND; bound += Math.abs(bound * 7919)) {
140                  final long lo = least, hi = bound;
141 <                r.longs(size, lo, hi).parallel().
142 <                    forEach(x -> {if (x < lo || x >= hi)
143 <                                fails.getAndIncrement(); });
141 >                r.longs(size, lo, hi).parallel().forEach(
142 >                    x -> {
143 >                        if (x < lo || x >= hi)
144 >                            fails.getAndIncrement(); });
145              }
146          }
147          assertEquals(0, fails.get());
# Line 155 | Line 157 | public class ThreadLocalRandom8Test exte
157          for (double least = 0.00011; least < 1.0e20; least *= 9) {
158              for (double bound = least * 1.0011; bound < 1.0e20; bound *= 17) {
159                  final double lo = least, hi = bound;
160 <                r.doubles(size, lo, hi).parallel().
161 <                    forEach(x -> {if (x < lo || x >= hi)
162 <                                fails.getAndIncrement(); });
160 >                r.doubles(size, lo, hi).parallel().forEach(
161 >                    x -> {
162 >                        if (x < lo || x >= hi)
163 >                            fails.getAndIncrement(); });
164              }
165          }
166          assertEquals(0, fails.get());

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines