summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2020-06-21 23:14:30 +0900
committerYusuke Endoh <mame@ruby-lang.org>2020-06-21 23:14:30 +0900
commitaec8e6d379a9dbb6c871090d93a3db4e60954b94 (patch)
treea2c8db97f1d7ac68b06654830ab3b18d2401d5b5
parentec07e2de1a15ac8ab54b6275c8d09aa615fbb1db (diff)
test/ruby/test_jit.rb: Change the condition to detect RHEL 7.1 s390x
-rw-r--r--test/ruby/test_jit.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb
index fed5346448..90d498c46f 100644
--- a/test/ruby/test_jit.rb
+++ b/test/ruby/test_jit.rb
@@ -613,7 +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'
+ skip 'ld SEGVs for this' if RUBY_PLATFORM.start_with?("s390x-")
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)