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

* bootstraptest/test_thread.rb: ignore some exceptions.

[ruby-dev:36951]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19973 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2008-10-28 00:52:32 +00:00
parent 26708cc4af
commit e8d91f1213
2 changed files with 10 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue Oct 28 09:51:48 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* bootstraptest/test_thread.rb: ignore some exceptions.
[ruby-dev:36951]
Tue Oct 28 09:19:40 2008 NAKAMURA Usaku <usa@ruby-lang.org>
* win32/Makefile.sub (RUNRUBY): now ruby requires something from

View file

@ -363,5 +363,9 @@ assert_equal 'ok', %q{
}, '[ruby-dev:35414]'
assert_equal 'ok', %q{
10000.times { Thread.new(true) {|x| x == false } }; :ok
begin
10000.times { Thread.new(true) {|x| x == false } }
rescue NoMemoryError, StandardError
end
:ok
}