File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 6767 big_mul = big * x
6868 # This might overflow: ...
6969 mul = fd * x
70- # ... so we truncate big to the same size
71- @test big_mul. i % T == mul. i % T
70+ @testset " $fd * $x " begin
71+ # ... so we truncate big to the same size
72+ @test big_mul. i % T == mul. i % T
73+ end
7274 end
7375 @testset for v in typemin (FD) : eps (FD) : typemax (FD)
7476 test_multiplies_correctly (v, typemin (T))
9597 big_mul = big * x
9698 # This might overflow: ...
9799 mul = fd * x
98- # ... so we truncate big to the same size
99- @test big_mul. i % T == mul. i % T
100+ @testset " $fd * $x " begin
101+ # ... so we truncate big to the same size
102+ @test big_mul. i % T == mul. i % T
103+ end
100104 end
101105 vals = FD[
102106 typemin (FD), typemax (FD),
You can’t perform that action at this time.
0 commit comments