From 2d4ef8a2386d4eee09dc7b3db27e83948e0c91a9 Mon Sep 17 00:00:00 2001 From: Ian Butterworth Date: Sun, 23 Jun 2024 07:17:29 -0400 Subject: [PATCH] skip compileall test on all 32-bit (#54897) --- test/compileall.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/compileall.jl b/test/compileall.jl index 3f5549e2aece6..beec0d6df49ab 100644 --- a/test/compileall.jl +++ b/test/compileall.jl @@ -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()'`)