ruby-changes:63405
From: Koichi <ko1@a...>
Date: Wed, 21 Oct 2020 17:59:51 +0900 (JST)
Subject: [ruby-changes:63405] 4414031735 (master): extend timeout of rbs test on rbs tests
https://git.ruby-lang.org/ruby.git/commit/?id=4414031735 From 441403173595ddf80d11c99ebe70d4c7ccd49188 Mon Sep 17 00:00:00 2001 From: Koichi Sasada <ko1@a...> Date: Wed, 21 Oct 2020 17:58:12 +0900 Subject: extend timeout of rbs test on rbs tests diff --git a/tool/test-bundled-gems.rb b/tool/test-bundled-gems.rb index 7f04ff3..6928c76 100644 --- a/tool/test-bundled-gems.rb +++ b/tool/test-bundled-gems.rb @@ -14,17 +14,20 @@ File.foreach("#{gem_dir}/bundled_gems") do |line| https://github.com/ruby/ruby/blob/trunk/tool/test-bundled-gems.rb#L14 puts "\nTesting the #{gem} gem" test_command = "#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{rake} test" + first_timeout = 600 # 10min if gem == "rbs" racc = File.realpath("../../libexec/racc", __FILE__) pid = Process.spawn("#{ruby} -C #{gem_dir}/src/#{gem} -Ilib #{racc} -v -o lib/rbs/parser.rb lib/rbs/parser.y") Process.waitpid(pid) test_command << " stdlib_test validate" + + first_timeout *= 3 end puts test_command pid = Process.spawn(test_command, "#{/mingw|mswin/ =~ RUBY_PLATFORM ? 'new_' : ''}pgroup": true) - {nil => 600, INT: 30, TERM: 10, KILL: nil}.each do |sig, sec| + {nil => first_timeout, INT: 30, TERM: 10, KILL: nil}.each do |sig, sec| if sig puts "Sending #{sig} signal" Process.kill("-#{sig}", pid) -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/