diff --git a/test/ruby/test_fiber.rb b/test/ruby/test_fiber.rb index f548024175..e4c5841ff5 100644 --- a/test/ruby/test_fiber.rb +++ b/test/ruby/test_fiber.rb @@ -361,6 +361,7 @@ class TestFiber < Test::Unit::TestCase 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/ 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_large = eval(invoke_rec('p RubyVM::DEFAULT_PARAMS', 1024 * 1024 * 5, 1024 * 1024 * 10, false))