1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

test/ruby/test_fiber.rb (test_stack_size): re-enabled on s390x

Revert 9948addda6.
It is now discussed in https://bugs.ruby-lang.org/issues/16814, and an
assert is added with a217d3cedc.
It would be good to give it a try.
This commit is contained in:
Yusuke Endoh 2020-04-27 02:09:08 +09:00
parent a217d3cedc
commit 93ed465dcd

View file

@ -360,7 +360,6 @@ class TestFiber < Test::Unit::TestCase
end end
def test_stack_size def test_stack_size
skip 'too unstable on Travis s390x-linux' if RUBY_PLATFORM == 's390x-linux'
skip 'too unstable on riscv' if RUBY_PLATFORM =~ /riscv/ skip 'too unstable on riscv' if RUBY_PLATFORM =~ /riscv/
h_default = eval(invoke_rec('p RubyVM::DEFAULT_PARAMS', nil, nil, false)) h_default = eval(invoke_rec('p RubyVM::DEFAULT_PARAMS', nil, nil, false))
h_0 = eval(invoke_rec('p RubyVM::DEFAULT_PARAMS', 0, 0, false)) h_0 = eval(invoke_rec('p RubyVM::DEFAULT_PARAMS', 0, 0, false))