diff options
author | ttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-09 09:42:40 +0000 |
---|---|---|
committer | ttate <ttate@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2005-02-09 09:42:40 +0000 |
commit | 43b696ac1dc527faed6db100eba7ce4f6f1a33a5 (patch) | |
tree | 30981f4ec975d95ca682d47ee82a108be80795aa | |
parent | ead7ae9ba8a7941f31413fe06a727a5cb6b75167 (diff) | |
download | ruby-43b696ac1dc527faed6db100eba7ce4f6f1a33a5.tar.gz ruby-43b696ac1dc527faed6db100eba7ce4f6f1a33a5.tar.xz ruby-43b696ac1dc527faed6db100eba7ce4f6f1a33a5.zip |
modified some test scripts for [ruby-dev:25661].
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@7932 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | ext/dl/test/test_all.rb | 2 | ||||
-rw-r--r-- | ext/dl/test/test_base.rb | 6 |
2 files changed, 4 insertions, 4 deletions
diff --git a/ext/dl/test/test_all.rb b/ext/dl/test/test_all.rb index cf391dd6a..fb1f4939f 100644 --- a/ext/dl/test/test_all.rb +++ b/ext/dl/test/test_all.rb @@ -6,6 +6,6 @@ require 'test_func' require 'test_import' case RUBY_PLATFORM -when /cygwin/, /mingw32/, /mswin32/ +when /cygwin/, /mingw32/, /mswin32/, /bccwin32/ require 'test_win32' end diff --git a/ext/dl/test/test_base.rb b/ext/dl/test/test_base.rb index bf35d7a62..fc72db4e5 100644 --- a/ext/dl/test/test_base.rb +++ b/ext/dl/test/test_base.rb @@ -8,9 +8,9 @@ when /cygwin/ when /linux/ LIBC_SO = "/lib/libc.so.6" LIBM_SO = "/lib/libm.so.6" -when /mingw/, /msvcrt/ - LIBC_SO = "C:\\WINDOWS\\system32\\msvcrt.dll" - LIBM_SO = "C:\\WINDOWS\\system32\\msvcrt.dll" +when /mingw/, /mswin32/ + LIBC_SO = "msvcrt.dll" + LIBM_SO = "msvcrt.dll" else LIBC_SO = ARGV[0] LIBM_SO = ARGV[1] |