YJIT: Disable the runtime_checks feature temporarily

The stack canary gets killed in test_yjit.rb:224 for some reason. Needs
investigation. Example CI failure:
https://github.com/ruby/ruby/actions/runs/16307837724/job/46057558066
This commit is contained in:
Alan Wu 2025-07-15 21:19:47 -04:00
parent 95521324de
commit ccbbe06a02

View File

@ -22,7 +22,8 @@ path = "jit.rs"
[features]
disasm = ["yjit?/disasm", "zjit?/disasm"]
runtime_checks = ["yjit?/runtime_checks", "zjit?/runtime_checks"]
# TODO(GH-642) Turning this on trips a btest failure.
runtime_checks = [] # ["yjit?/runtime_checks", "zjit?/runtime_checks"]
yjit = [ "dep:yjit" ]
zjit = [ "dep:zjit" ]