Skip to content

Commit

Permalink
Only test macroexpand on 1.9+
Browse files Browse the repository at this point in the history
One of the many internal Base things we're using is likely different on
<= 1.8
  • Loading branch information
c42f committed Jul 12, 2023
1 parent fe69bf0 commit d672db2
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ include("expr.jl")
end
include("source_files.jl")

JuliaSyntax.include2(@__MODULE__, "macroexpand.jl")
if VERSION >= v"1.9"
JuliaSyntax.include2(@__MODULE__, "macroexpand.jl")
end

if VERSION >= v"1.6"
# Tests restricted to 1.6+ due to
Expand Down

0 comments on commit d672db2

Please sign in to comment.