Skip to content

Commit

Permalink
Exclude Base.jl from sigtest
Browse files Browse the repository at this point in the history
On Julia 1.10 it uses `include(mapexpr, file)`, which is
unsupported by Revise.
  • Loading branch information
timholy committed Dec 31, 2023
1 parent b82cd93 commit 6b74df8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/sigtest.jl
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ end

basefiles = Set{String}()
@time for (i, (mod, file)) in enumerate(Base._included_files)
endswith(file, "sysimg.jl") && continue
(endswith(file, "sysimg.jl") || endswith(file, "Base.jl")) && continue
file = Revise.fixpath(file)
push!(basefiles, reljpath(file))
mexs = Revise.parse_source(file, mod)
Expand Down

0 comments on commit 6b74df8

Please sign in to comment.