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
While working on getting Coverage.jl up to speed for use with Julia 0.7 and 1.0 (see JuliaCI/Coverage.jl#179) I noticed the following; I am unsure whether this is a bug, a misfeature, or (most likely) just something I don't understand regarding the code coverage reported by Julia.
So the "3" for the module seems to be a bug that's been fixed in Julia 1.x, fine. But what puzzles me is that 2 (instead of 1 for Julia 0.6) for the line f(x) = 2x. Is that a bug? Or a quirk of the code coverage implementation? Or something else?
The text was updated successfully, but these errors were encountered:
While working on getting Coverage.jl up to speed for use with Julia 0.7 and 1.0 (see JuliaCI/Coverage.jl#179) I noticed the following; I am unsure whether this is a bug, a misfeature, or (most likely) just something I don't understand regarding the code coverage reported by Julia.
Consider this simple input file, stored as
tc.jl
:Now I run Julia like this:
Then I get the following results ...
... with Julia 0.6.4:
... with Julia 0.7.0.
... with Julia 1.0.1 and master:
So the "3" for the module seems to be a bug that's been fixed in Julia 1.x, fine. But what puzzles me is that 2 (instead of 1 for Julia 0.6) for the line
f(x) = 2x
. Is that a bug? Or a quirk of the code coverage implementation? Or something else?The text was updated successfully, but these errors were encountered: