Skip to content

Commit

Permalink
skip compileall test on all 32-bit (#54897)
Browse files Browse the repository at this point in the history
  • Loading branch information
IanButterworth authored Jun 23, 2024
1 parent 5da1f06 commit 2d4ef8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/compileall.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# with the rest of the tests.

mktempdir() do dir
@test success(pipeline(`$(Base.julia_cmd()) --compile=all --strip-ir --output-o $(dir)/sys.o.a -e 'exit()'`, stderr=stderr)) broken=(Sys.iswindows() && Sys.WORD_SIZE == 32)
@test success(pipeline(`$(Base.julia_cmd()) --compile=all --strip-ir --output-o $(dir)/sys.o.a -e 'exit()'`, stderr=stderr)) skip=(Sys.WORD_SIZE == 32)
if isfile(joinpath(dir, "sys.o.a"))
Base.Linking.link_image(joinpath(dir, "sys.o.a"), joinpath(dir, "sys.so"))
@test success(`$(Base.julia_cmd()) -J $(dir)/sys.so -e 'Base.scrub_repl_backtrace(nothing); exit()'`)
Expand Down

0 comments on commit 2d4ef8a

Please sign in to comment.