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

* thread_pthread.c (rb_thread_create_timer_thread): print fatal error

message to stderr instead of using rb_bug().
* KNOWNBUGS.rb, bootstraptest/test_fork.rb: move a fixed test.



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23647 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2009-06-07 23:59:58 +00:00
parent 27174800d4
commit 0cdfbc9446
5 changed files with 17 additions and 9 deletions

View file

@ -20,3 +20,9 @@ assert_finish 10, %q{
rescue NotImplementedError
end
}, '[ruby-core:22158]'
assert_normal_exit(<<'End', '[ruby-dev:37934]')
Thread.new { sleep 1; Thread.kill Thread.main }
Process.setrlimit(:NPROC, 1)
fork {}
End