mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
Fix win32ole test failure under mingw-w64 (x64-mingw32)
* test/win32ole/test_win32ole_method.rb (is_ruby64?): Correct platform used to identify mingw-w64 (x64-mingw32). Patch by Hiroshi Shirosaki. [ruby-core:46651][Bug #6782] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36508 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
0d8bc52593
commit
fa608f4af2
2 changed files with 7 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
||||||
|
Tue Jul 24 08:09:30 2012 Luis Lavena <luislavena@gmail.com>
|
||||||
|
|
||||||
|
* test/win32ole/test_win32ole_method.rb (is_ruby64?): Correct platform
|
||||||
|
used to identify mingw-w64 (x64-mingw32). Patch by Hiroshi Shirosaki.
|
||||||
|
[ruby-core:46651][Bug #6782]
|
||||||
|
|
||||||
Tue Jul 24 07:22:58 2012 Eric Hodel <drbrain@segment7.net>
|
Tue Jul 24 07:22:58 2012 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* time.c (time_sec): Updated description of leap seconds for accuracy.
|
* time.c (time_sec): Updated description of leap seconds for accuracy.
|
||||||
|
|
|
@ -109,7 +109,7 @@ if defined?(WIN32OLE_METHOD)
|
||||||
end
|
end
|
||||||
|
|
||||||
def is_ruby64?
|
def is_ruby64?
|
||||||
/mswin64|mingw64/ =~ RUBY_PLATFORM
|
/mswin64|x64-mingw/ =~ RUBY_PLATFORM
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_offset_vtbl
|
def test_offset_vtbl
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue