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

* doc/ChangeLog-1.9.3, test/gdbm/test_gdbm.rb: fixed mingw typo.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@34149 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2011-12-28 02:40:28 +00:00
parent 6a6c314fd0
commit 15fb1619e3
2 changed files with 2 additions and 2 deletions

View file

@ -81433,7 +81433,7 @@ Mon Nov 8 22:20:19 2004 Dave Thomas <dave@pragprog.com>
Mon Nov 8 00:14:13 2004 WATANABE Hirofumi <eban@ruby-lang.org> Mon Nov 8 00:14:13 2004 WATANABE Hirofumi <eban@ruby-lang.org>
* configure.in: add setup for mignw32 cross compiling. * configure.in: add setup for mingw32 cross compiling.
[ruby-talk:119413] [ruby-talk:119413]
Sun Nov 7 23:49:26 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp> Sun Nov 7 23:49:26 2004 Hidetoshi NAGAI <nagai@ai.kyutech.ac.jp>

View file

@ -109,7 +109,7 @@ if defined? GDBM
begin begin
assert_instance_of(GDBM, gdbm = GDBM.open("#{@tmpdir}/#{@prefix}")) assert_instance_of(GDBM, gdbm = GDBM.open("#{@tmpdir}/#{@prefix}"))
gdbm.close gdbm.close
assert_equal(File.stat("#{@tmpdir}/#{@prefix}").mode & 0777, 0666) unless /mswin|mignw/ =~ RUBY_PLATFORM assert_equal(File.stat("#{@tmpdir}/#{@prefix}").mode & 0777, 0666) unless /mswin|mingw/ =~ RUBY_PLATFORM
assert_instance_of(GDBM, gdbm = GDBM.open("#{@tmpdir}/#{@prefix}2", 0644)) assert_instance_of(GDBM, gdbm = GDBM.open("#{@tmpdir}/#{@prefix}2", 0644))
gdbm.close gdbm.close
assert_equal(File.stat("#{@tmpdir}/#{@prefix}2").mode & 0777, 0644) assert_equal(File.stat("#{@tmpdir}/#{@prefix}2").mode & 0777, 0644)