mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
0c61c3b67b
* ext/win32ole/lib/win32ole.rb: use TracePoint to hook all thread creation not only by Thread.new and to get rid of interference with svar scope. [Bug #7681] [ruby-core:51365] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38848 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
33 lines
804 B
Ruby
33 lines
804 B
Ruby
begin
|
|
require 'win32ole'
|
|
rescue LoadError
|
|
end
|
|
require 'test/unit'
|
|
|
|
if defined?(WIN32OLE)
|
|
class TestThread < Test::Unit::TestCase
|
|
#
|
|
# test for Bug #2618(ruby-core:27634)
|
|
#
|
|
def assert_creating_win32ole_object_in_thread(meth)
|
|
t = Thread.__send__(meth) {
|
|
WIN32OLE.new('Scripting.Dictionary')
|
|
}
|
|
assert_nothing_raised(WIN32OLERuntimeError, "[Bug #2618] Thread.#{meth}") {
|
|
t.join
|
|
}
|
|
end
|
|
|
|
def test_creating_win32ole_object_in_thread_new
|
|
assert_creating_win32ole_object_in_thread(:new)
|
|
end
|
|
|
|
def test_creating_win32ole_object_in_thread_start
|
|
assert_creating_win32ole_object_in_thread(:start)
|
|
end
|
|
|
|
def test_creating_win32ole_object_in_thread_fork
|
|
assert_creating_win32ole_object_in_thread(:fork)
|
|
end
|
|
end
|
|
end
|