summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorTakashi Kokubun <takashikkbn@gmail.com>2022-11-27 22:48:18 -0800
committerTakashi Kokubun <takashikkbn@gmail.com>2022-11-27 22:48:19 -0800
commit168b0e1f025a3c8927bbf548cc4631862fe22d29 (patch)
treefbe3fe974e29483b0e3eaff3bcadf82507f7c075 /test
parent2c1c0d3df033da6745aa0f828a704bb46a535fbc (diff)
Make the timeout of test_system_sigpipe longer
https://github.com/ruby/ruby/actions/runs/3562236318/jobs/5983796689
Diffstat (limited to 'test')
-rw-r--r--test/ruby/test_process.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ruby/test_process.rb b/test/ruby/test_process.rb
index 10c4aadadf..8a501b0624 100644
--- a/test/ruby/test_process.rb
+++ b/test/ruby/test_process.rb
@@ -1817,7 +1817,7 @@ class TestProcess < Test::Unit::TestCase
with_tmpchdir do
assert_nothing_raised('[ruby-dev:12261]') do
- EnvUtil.timeout(3) do
+ EnvUtil.timeout(10) do
pid = spawn('yes | ls')
Process.waitpid pid
end