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

* gc.c: add rb_during_gc(). based on a patch from arton <artonx AT yahoo.co.jp> at [ruby-dev:35313]. * intern.h: ditto. * ext/win32ole/win32ole.c: avoid creating Ruby object during GC. thanks to arton <artonx AT yahoo.co.jp>. [ruby-dev:35313] * ext/win32ole/tests: add test_win32ole_event.rb, remove testOLEEVENT.rb * ext/win32ole/tests/testWIN32OLE.rb(test_convert_bignum): fix test. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8_7@17926 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
16 lines
445 B
Ruby
16 lines
445 B
Ruby
require 'rubyunit'
|
|
require 'win32ole'
|
|
puts "Now Test Win32OLE version #{WIN32OLE::VERSION}"
|
|
# RUNIT::CUI::TestRunner.quiet_mode = true
|
|
require "testWIN32OLE"
|
|
require "testOLETYPE"
|
|
require "testOLEPARAM"
|
|
require "testOLEMETHOD"
|
|
require "testOLEVARIABLE"
|
|
require "testVARIANT"
|
|
require "testNIL2VTEMPTY"
|
|
require "test_ole_methods.rb"
|
|
require "test_propertyputref.rb"
|
|
require "test_word.rb"
|
|
require "test_win32ole_event.rb"
|
|
# require "testOLEEVENT"
|