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

* test/webrick/test_cgi.rb (TestWEBrickCGI#{start_cgi_server,test_cgi}):

mswin is not only mswin32 but also mswin64. [Bug #8746]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42421 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2013-08-07 07:39:23 +00:00
parent 382abb7526
commit d3831282fc
2 changed files with 7 additions and 2 deletions

View file

@ -1,3 +1,8 @@
Wed Aug 7 16:34:30 2013 NAKAMURA Usaku <usa@ruby-lang.org>
* test/webrick/test_cgi.rb (TestWEBrickCGI#{start_cgi_server,test_cgi}):
mswin is not only mswin32 but also mswin64.
Wed Aug 7 16:19:12 2013 Koichi Sasada <ko1@atdot.net>
* cont.c (rb_fiber_start): use RARRAY_RAWPTR() instead of

View file

@ -20,7 +20,7 @@ class TestWEBrickCGI < Test::Unit::TestCase
end
},
}
if RUBY_PLATFORM =~ /mswin32|mingw|cygwin|bccwin32/
if RUBY_PLATFORM =~ /mswin|mingw|cygwin|bccwin32/
config[:CGIPathEnv] = ENV['PATH'] # runtime dll may not be in system dir.
end
TestWEBrick.start_httpserver(config){|server, addr, port, log|
@ -40,7 +40,7 @@ class TestWEBrickCGI < Test::Unit::TestCase
req = Net::HTTP::Get.new("/webrick.cgi/%A4%DB%A4%B2/%A4%DB%A4%B2")
# Path info of res.body is passed via ENV.
# ENV[] returns different value on Windows depending on locale.
unless RUBY_PLATFORM =~ /mswin32|mingw|cygwin|bccwin32/ &&
unless RUBY_PLATFORM =~ /mswin|mingw|cygwin|bccwin32/ &&
Encoding.find("locale") != Encoding.find("filesystem")
http.request(req){|res|
assert_equal("/\xA4\xDB\xA4\xB2/\xA4\xDB\xA4\xB2", res.body, log.call)}