summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2020-04-18 00:31:33 -0700
committerTakashi Kokubun <takashikkbn@gmail.com>2020-04-18 00:31:34 -0700
commit9948addda67f4b7a6e3575f1eba9025f998811d2 (patch)
tree775f3389a017e444b0039518bc3dcbfe3d4c8778
parent8d6aa06620b316904fd10d0cab1b85e07f2fbf67 (diff)
Skip a too-unstable test on s390x-linux
In the last 26-ish hours, it has failed 5 times: https://travis-ci.org/github/ruby/ruby/jobs/676497718 https://travis-ci.org/github/ruby/ruby/jobs/676480295 https://travis-ci.org/github/ruby/ruby/jobs/676103216 https://travis-ci.org/github/ruby/ruby/jobs/676057967 https://travis-ci.org/github/ruby/ruby/jobs/676055113 and I don't think anybody has been working on it right now. To make CI result report of s390x-linux useful, let's skip it until the test is improved to be more stable.
-rw-r--r--test/ruby/test_fiber.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/ruby/test_fiber.rb b/test/ruby/test_fiber.rb
index 947e75aa2c..f548024175 100644
--- a/test/ruby/test_fiber.rb
+++ b/test/ruby/test_fiber.rb
@@ -360,6 +360,7 @@ class TestFiber < Test::Unit::TestCase
end
def test_stack_size
+ skip 'too unstable on Travis s390x-linux' if RUBY_PLATFORM == 's390x-linux'
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))