Skip to content

Commit

Permalink
Re-enable ORC testing. (#478)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Sep 6, 2024
1 parent 514966f commit a202084
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 16 deletions.
9 changes: 0 additions & 9 deletions examples/sum_orc.jl
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,6 @@ using Test

using LLVM

if LLVM.version() >= v"17" && Sys.islinux()

# maleadt/LLVM.jl#405
@error "ORC is broken on Linux with LLVM >= 17"

else

if length(ARGS) == 2
x, y = parse.([Int32], ARGS[1:2])
else
Expand Down Expand Up @@ -68,5 +61,3 @@ end
@test call_sum(x, y) == x + y
LLVM.dispose(jit)
LLVM.dispose(tm)

end
7 changes: 0 additions & 7 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -41,12 +41,5 @@ runtests(LLVM; worker_init_expr, nworkers=min(Sys.CPU_THREADS,4), nworker_thread
LLVM.has_oldpm() || return false
end

if ti.name == "orc"
if LLVM.version() >= v"17" && Sys.islinux()
# maleadt/LLVM.jl#405
return false
end
end

true
end

0 comments on commit a202084

Please sign in to comment.