summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-06-20 23:23:28 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-06-20 23:25:16 -0700
commit538276aa777e4abfb6eaf55466043a3752fbb8ec (patch)
treee9758c023ad5151f42c01ed675c7562c0434bcaf
parentccd2f99e71162bddc24bf2ff76576c3ce65fcbb8 (diff)
Skip a test_jit with builtin for rhel_zlinux
Either 95b0fed371 or 7561db8c00 started to cause https://rubyci.org/logs/rubyci.s3.amazonaws.com/rhel_zlinux/ruby-master/log/20200621T053303Z.fail.html.gz But so far no idea why it's happening. Until I get direct ssh access to debug the details, let me skip this as it's essentially not ruby's fault.
-rw-r--r--test/ruby/test_jit.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index 0a7089375d..fed5346448 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -613,6 +613,7 @@ class TestJIT < Test::Unit::TestCase
end
def test_compile_insn_opt_invokebuiltin_delegate_leave
+ skip 'ld SEGVs for this' if ENV['RUBYCI_NICKNAME'] == 'rhel_zlinux'
insns = collect_insns(RubyVM::InstructionSequence.of("\x00".method(:unpack)).to_a)
mark_tested_insn(:opt_invokebuiltin_delegate_leave, used_insns: insns)
assert_eval_with_jit('print "\x00".unpack("c")', stdout: '[0]', success_count: 1)