From e43f304478fddea3ee8c53a82d5f9ae83b379768 Mon Sep 17 00:00:00 2001 From: mame Date: Thu, 14 Sep 2017 06:07:05 +0000 Subject: Measure branch and method coverage for `make test-all` To measure coverage of C code: `./configure --enable-gcov && make && make exam && make lcov` To measure coverage of Ruby code: `./configure && make && make exam COVERAGE=true && make lcov` To measure coverage of both languages at a time: `./configure --enable-gcov && make && make exam COVERAGE=true && make lcov` git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59890 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/ruby/test_thread.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/ruby') diff --git a/test/ruby/test_thread.rb b/test/ruby/test_thread.rb index dbe4ac21b9..02f83d05ca 100644 --- a/test/ruby/test_thread.rb +++ b/test/ruby/test_thread.rb @@ -1148,7 +1148,7 @@ q.pop end Process.wait2(f.pid) end - unless th.join(EnvUtil.apply_timeout_scale(3)) + unless th.join(EnvUtil.apply_timeout_scale(30)) Process.kill(:QUIT, f.pid) Process.kill(:KILL, f.pid) unless th.join(EnvUtil.apply_timeout_scale(1)) end -- cgit v1.2.3