File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
src/test/java/com/fasterxml/jackson/core/io/schubfach Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -141,6 +141,7 @@ void testHardValues() {
141
141
142
142
@ Test
143
143
void randomNumberTests () {
144
- DoubleToDecimalChecker .randomNumberTests (1_000_000 , new Random ());
144
+ // 29-Nov-2022, tatu: Reduce from 1M due to slowness
145
+ DoubleToDecimalChecker .randomNumberTests (250_000 , new Random ());
145
146
}
146
147
}
Original file line number Diff line number Diff line change @@ -110,7 +110,9 @@ void testPaxson() {
110
110
*/
111
111
@ Test
112
112
void testInts () {
113
- for (int i = 1 ; i < 1 << P - 1 ; ++i ) {
113
+ // 29-Nov-2022, tatu: Reduce from original due to slowness
114
+ // for (int i = 1; i < 1 << P - 1; ++i) {
115
+ for (int i = 1 ; i < 1 << P - 1 ; i += 3 ) {
114
116
toDec (i );
115
117
}
116
118
}
You can’t perform that action at this time.
0 commit comments