1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

bootstraptest/test_fork.rb: Stop too restrict NPROC test temporarily

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61718 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2018-01-09 08:05:40 +00:00
parent 3ecd8ab825
commit 60bb4fcdf6

View file

@ -21,7 +21,9 @@ assert_finish 10, %q{
end
}, '[ruby-core:22158]'
assert_normal_exit(<<'End', '[ruby-dev:37934]')
# temporarily stop this test to enable explicit failure when
# timer thread couldn't be created (r61706 and r61717).
assert_normal_exit(<<'End', '[ruby-dev:37934]') if false
main = Thread.current
Thread.new { sleep 0.01 until main.stop?; Thread.kill main }
Process.setrlimit(:NPROC, 1) if defined?(Process::RLIMIT_NPROC)