diff options
author | Yusuke Endoh <[email protected]> | 2024-08-06 16:59:24 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2024-08-06 16:59:24 +0900 |
commit | 24d46a6781231c54d6b5fc0a20a24cd65a902ad4 (patch) | |
tree | 4ff9608cc1b065435c0ab6e4b0e75404f44967b0 /tool/lib | |
parent | 65e3717db7bfd957660a5b3d9c5ac4fd22e8d858 (diff) |
Extend the default timeout of parallel testing to one hour
Diffstat (limited to 'tool/lib')
-rw-r--r-- | tool/lib/test/unit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tool/lib/test/unit.rb b/tool/lib/test/unit.rb index a9c3b9b7ec..18b894a893 100644 --- a/tool/lib/test/unit.rb +++ b/tool/lib/test/unit.rb @@ -282,7 +282,7 @@ module Test options[:parallel] ||= 256 # number of tokens to acquire first end end - @worker_timeout = EnvUtil.apply_timeout_scale(options[:worker_timeout] || 600) + @worker_timeout = EnvUtil.apply_timeout_scale(options[:worker_timeout] || 3600) super end |