We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fd0baa9 commit 962a67dCopy full SHA for 962a67d
1 file changed
convert_extra_test.go
@@ -202,6 +202,7 @@ func TestFromFloat64WithModeExtra(t *testing.T) {
202
{"Overflow", 70000.0, ModeIEEE, RoundNearestEven, PositiveInfinity, false},
203
{"Underflow", 1e-40, ModeIEEE, RoundNearestEven, PositiveZero, false},
204
{"Underflow Strict", 1e-40, ModeStrict, RoundNearestEven, 0, true},
205
+ {"Subnormal", 1e-39, ModeIEEE, RoundNearestEven, FromBits(0x0000), false},
206
}
207
208
for _, tc := range testCases {
0 commit comments