8000 * test/webrick/test_cgi.rb (class TestWEBrickCGI): respect · ileitch/ruby@d3fc4ae · GitHub
[go: up one dir, main page]

Skip to content

Commit d3fc4ae

Browse files
author
kosaki
committed
* test/webrick/test_cgi.rb (class TestWEBrickCGI): respect
RbConfig::CONFIG["LIBPATHENV"]. [Bug ruby#5135] [ruby-core:38653] * test/webrick/test_filehandler.rb (class WEBrick): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33730 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
1 parent d956e6d commit d3fc4ae

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
8000
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
Sat Nov 12 21:14:51 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
2+
3+
* test/webrick/test_cgi.rb (class TestWEBrickCGI): respect
4+
RbConfig::CONFIG["LIBPATHENV"]. [Bug #5135] [ruby-core:38653]
5+
* test/webrick/test_filehandler.rb (class WEBrick): ditto.
6+
17
Sat Nov 12 20:57:29 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
28

39
* test/ruby/test_io.rb (test_fcntl_dupfd): skip if Fcntl::DUPFD

test/webrick/test_cgi.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ def start_cgi_server(&block)
1414
def req.meta_vars
1515
meta = super
1616
meta["RUBYLIB"] = $:.join(File::PATH_SEPARATOR)
17+
meta[RbConfig::CONFIG['LIBPATHENV']] = ENV[RbConfig::CONFIG['LIBPATHENV']]
1718
return meta
1819
end
1920
},

test/webrick/test_filehandler.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -252,6 +252,7 @@ def test_script_disclosure
252252
def req.meta_vars
253253
meta = super
254254
meta["RUBYLIB"] = $:.join(File::PATH_SEPARATOR)
255+
meta[RbConfig::CONFIG['LIBPATHENV']] = ENV[RbConfig::CONFIG['LIBPATHENV']]
255256
return meta
256257
end
257258
},

0 commit comments

Comments
 (0)
0