Skip to content

Commit 5021cb9

Browse files
authored
Skip another LLVMExtra test on Julia 1.9
1 parent 727467d commit 5021cb9

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

test/runtests.jl

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ end
8383
# On Julia 1.11, `incremental=false` is currently broken: https://github.com/JuliaLang/PackageCompiler.jl/issues/976
8484
# So, for now, we skip the `incremental=false` tests on Julia 1.11
8585
@warn "This is Julia 1.11; skipping incremental=false test due to known bug: https://github.com/JuliaLang/PackageCompiler.jl/issues/976"
86-
@test_broken false
86+
@test_skip false
8787
continue
8888
end
8989
filter_stdlibs = (is_slow_ci ? (true, ) : (true, false))
@@ -96,7 +96,7 @@ end
9696
cp(app_source_dir, tmp_app_source_dir)
9797
if is_julia_1_6 || is_julia_1_9
9898
# Julia 1.6: Issue #706 "Cannot locate artifact 'LLVMExtra'" on 1.6 so remove.
99-
# Julia 1.9: There's no issue, but it seems we hit a similar issue.
99+
# Julia 1.9: There's no GitHub Issue, but it seems we hit a similar problem.
100100
remove_llvmextras(joinpath(tmp_app_source_dir, "Project.toml"))
101101
end
102102
try
@@ -152,7 +152,11 @@ end
152152
@test occursin("From worker 4:\t8", app_output)
153153
@test occursin("From worker 5:\t8", app_output)
154154

155-
if VERSION >= v"1.7-"
155+
if is_julia_1_6 || is_julia_1_9
156+
# Julia 1.6: Issue #706 "Cannot locate artifact 'LLVMExtra'" on 1.6 so remove.
157+
# Julia 1.9: There's no GitHub Issue, but it seems we hit a similar problem.
158+
@test_skip false
159+
else
156160
@test occursin("LLVMExtra path: ok!", app_output)
157161
end
158162
@test occursin("micromamba_jll path: ok!", app_output)

0 commit comments

Comments
 (0)