ruby-changes:61881
From: Yusuke <ko1@a...>
Date: Sun, 21 Jun 2020 23:15:27 +0900 (JST)
Subject: [ruby-changes:61881] aec8e6d379 (master): test/ruby/test_jit.rb: Change the condition to detect RHEL 7.1 s390x
https://git.ruby-lang.org/ruby.git/commit/?id=aec8e6d379 From aec8e6d379a9dbb6c871090d93a3db4e60954b94 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh <mame@r...> Date: Sun, 21 Jun 2020 23:14:30 +0900 Subject: test/ruby/test_jit.rb: Change the condition to detect RHEL 7.1 s390x diff --git a/test/ruby/test_jit.rb b/test/ruby/test_jit.rb index fed5346..90d498c 100644 --- a/test/ruby/test_jit.rb +++ b/test/ruby/test_jit.rb @@ -613,7 +613,7 @@ class TestJIT < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_jit.rb#L613 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) -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/