24
24
/*
25
25
* @test
26
26
* @summary Verify nextDouble stays within range
27
- * @bug 8280550
27
+ * @bug 8280550 8280950
28
28
*/
29
29
30
30
import java .util .SplittableRandom ;
31
+ import java .util .random .RandomGenerator ;
31
32
32
33
public class RandomNextDoubleBoundary {
33
34
public static void main (String ... args ) {
35
+ negativeBounds ();
36
+ positiveBounds ();
37
+ }
38
+
39
+ private static void negativeBounds () {
34
40
// Both bounds are negative
35
41
double lowerBound = -1.0000000000000002 ;
36
42
double upperBound = -1.0 ;
@@ -49,4 +55,37 @@ public static void main(String... args) {
49
55
throw new RuntimeException ("Less than lower bound" );
50
56
}
51
57
}
58
+
59
+ private static void positiveBounds () {
60
+ double [][] originAndBounds = {{10 , 100 },
61
+ {12345 , 123456 },
62
+ {5432167.234 , 54321678.1238 }};
63
+ for (double [] originAndBound : originAndBounds ) {
64
+ nextDoublesWithRange (originAndBound [0 ], originAndBound [1 ]);
65
+ }
66
+ }
67
+
68
+ public static void nextDoublesWithRange (double origin , double bound ) {
69
+ RandomGenerator rg = new RandomGenerator () {
70
+ @ Override
71
+ public double nextDouble () {
72
+ return Double .MAX_VALUE ;
73
+ }
74
+
75
+ @ Override
76
+ public long nextLong () {
77
+ return 0 ;
78
+ }
79
+ };
80
+ double value = rg .nextDouble (origin , bound );
81
+
82
+ assertTrue (value >= origin );
83
+ assertTrue (value < bound );
84
+ }
85
+
86
+ public static void assertTrue (boolean condition ) {
87
+ if (!condition ) {
88
+ throw new AssertionError ();
89
+ }
90
+ }
52
91
}
3 commit comments
openjdk-notifier[bot] commentedon Feb 1, 2022
Review
Issues
jddarcy commentedon Feb 9, 2022
/backport jdk18u
openjdk[bot] commentedon Feb 9, 2022
@jddarcy the backport was successfully created on the branch jddarcy-backport-0e70d450 in my personal fork of openjdk/jdk18u. To create a pull request with this backport targeting openjdk/jdk18u:master, just click the following link:
➡️ Create pull request
The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:
If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk18u: