We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4a53703 commit 27a3e0fCopy full SHA for 27a3e0f
test/fldmod-by-const_tests.jl
@@ -67,8 +67,10 @@ end
67
big_mul = big * x
68
# This might overflow: ...
69
mul = fd * x
70
- # ... so we truncate big to the same size
71
- @test big_mul.i % T == mul.i % T
+ @testset "$fd * $x" begin
+ # ... so we truncate big to the same size
72
+ @test big_mul.i % T == mul.i % T
73
+ end
74
end
75
@testset for v in typemin(FD) : eps(FD) : typemax(FD)
76
test_multiplies_correctly(v, typemin(T))
@@ -95,8 +97,10 @@ end
95
97
96
98
99
100
101
102
103
104
105
vals = FD[
106
typemin(FD), typemax(FD),
0 commit comments