diff options
author | Takashi Kokubun <[email protected]> | 2022-11-27 22:48:18 -0800 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2022-11-27 22:48:19 -0800 |
commit | 168b0e1f025a3c8927bbf548cc4631862fe22d29 (patch) | |
tree | fbe3fe974e29483b0e3eaff3bcadf82507f7c075 /test | |
parent | 2c1c0d3df033da6745aa0f828a704bb46a535fbc (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.rb | 2 |
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 |