mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/{dbm,gdbm}/test_{dbm,gdbm}.rb: shouldn't use host_os. use
target_os instead. [ruby-list:43225] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@11923 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
e38fd64fcd
commit
c67d0e35e7
3 changed files with 9 additions and 4 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Wed Feb 28 01:20:18 2007 NAKAMURA Usaku <usa@ruby-lang.org>
|
||||||
|
|
||||||
|
* test/{dbm,gdbm}/test_{dbm,gdbm}.rb: shouldn't use host_os. use
|
||||||
|
target_os instead. [ruby-list:43225]
|
||||||
|
|
||||||
Wed Feb 28 00:08:11 2007 URABE Shyouhei <shyouhei@ice.uec.ac.jp>
|
Wed Feb 28 00:08:11 2007 URABE Shyouhei <shyouhei@ice.uec.ac.jp>
|
||||||
|
|
||||||
* mkconfig.rb (RbConfig): add CONFIG['PATCHLEVEL']
|
* mkconfig.rb (RbConfig): add CONFIG['PATCHLEVEL']
|
||||||
|
|
|
@ -12,7 +12,7 @@ if defined? DBM
|
||||||
class TestDBM < Test::Unit::TestCase
|
class TestDBM < Test::Unit::TestCase
|
||||||
def TestDBM.uname_s
|
def TestDBM.uname_s
|
||||||
require 'rbconfig'
|
require 'rbconfig'
|
||||||
case RbConfig::CONFIG['host_os']
|
case RbConfig::CONFIG['target_os']
|
||||||
when 'cygwin'
|
when 'cygwin'
|
||||||
require 'Win32API'
|
require 'Win32API'
|
||||||
uname = Win32API.new('cygwin1', 'uname', 'P', 'I')
|
uname = Win32API.new('cygwin1', 'uname', 'P', 'I')
|
||||||
|
@ -21,7 +21,7 @@ if defined? DBM
|
||||||
|
|
||||||
utsname.unpack('A20' * 5)[0]
|
utsname.unpack('A20' * 5)[0]
|
||||||
else
|
else
|
||||||
RbConfig::CONFIG['host_os']
|
RbConfig::CONFIG['target_os']
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
SYSTEM = uname_s
|
SYSTEM = uname_s
|
||||||
|
|
|
@ -12,7 +12,7 @@ if defined? GDBM
|
||||||
class TestGDBM < Test::Unit::TestCase
|
class TestGDBM < Test::Unit::TestCase
|
||||||
def TestGDBM.uname_s
|
def TestGDBM.uname_s
|
||||||
require 'rbconfig'
|
require 'rbconfig'
|
||||||
case RbConfig::CONFIG['host_os']
|
case RbConfig::CONFIG['target_os']
|
||||||
when 'cygwin'
|
when 'cygwin'
|
||||||
require 'Win32API'
|
require 'Win32API'
|
||||||
uname = Win32API.new('cygwin1', 'uname', 'P', 'I')
|
uname = Win32API.new('cygwin1', 'uname', 'P', 'I')
|
||||||
|
@ -21,7 +21,7 @@ if defined? GDBM
|
||||||
|
|
||||||
utsname.unpack('A20' * 5)[0]
|
utsname.unpack('A20' * 5)[0]
|
||||||
else
|
else
|
||||||
RbConfig::CONFIG['host_os']
|
RbConfig::CONFIG['target_os']
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
SYSTEM = uname_s
|
SYSTEM = uname_s
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue