You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This thwarts the selective execution of tests and causes an error(UndefVarError: testapprox not defined) in certain environments (e.g. Julia v1.0.3 32-bit ARMv7).
I think testapprox is not so complicated. It may be a good idea to inline the function or define it locally.
This may be off topic, but I also think there are too many test cases generated by testapprox (or its friend testtrunc). @test should be outside the loop.
The text was updated successfully, but these errors were encountered:
The "fixed" testset depends on
testapprox
which is defined in "test/normed.jl" (formerly named ufixed.jl).FixedPointNumbers.jl/test/fixed.jl
Lines 86 to 90 in 70ae1d6
FixedPointNumbers.jl/test/normed.jl
Lines 233 to 240 in 70ae1d6
This thwarts the selective execution of tests and causes an error(
UndefVarError: testapprox not defined
) in certain environments (e.g. Julia v1.0.3 32-bit ARMv7).I think
testapprox
is not so complicated. It may be a good idea to inline the function or define it locally.This may be off topic, but I also think there are too many test cases generated by
testapprox
(or its friendtesttrunc
).@test
should be outside the loop.The text was updated successfully, but these errors were encountered: