Skip to content

Commit f846b89

Browse files
also disable is_foldable test on other 32bit platforms (#54910)
Follow-on from #54323 @aviatesk I think this should also be disabled on linux? It's been failing there On `test i686-linux-gnu` ``` math (7) | failed at 2024-06-23T13:58:26.792 Test Failed at /cache/build/tester-amdci5-8/julialang/julia-buildkite/julia-2d4ef8a238/share/julia/test/math.jl:1607 Expression: Core.Compiler.is_foldable(effects) Context: effects = (+c,+e,+n,!t,+s,+m,+u,+o) T = Float64 ```
1 parent 696d9c3 commit f846b89

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/math.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1602,11 +1602,11 @@ end
16021602
@test Core.Compiler.is_foldable(effects)
16031603
end
16041604
end
1605-
@static if !(Sys.iswindows()&&Int==Int32) # COMBAK debug this
1606-
@testset let effects = Base.infer_effects(^, (T,Int))
1607-
@test Core.Compiler.is_foldable(effects)
1605+
@static if Sys.WORD_SIZE != 32 # COMBAK debug this
1606+
@testset let effects = Base.infer_effects(^, (T,Int))
1607+
@test Core.Compiler.is_foldable(effects)
1608+
end
16081609
end
1609-
end # @static
16101610
@testset let effects = Base.infer_effects(^, (T,T))
16111611
@test Core.Compiler.is_foldable(effects)
16121612
end

0 commit comments

Comments
 (0)