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

* test/test_rbconfig.rb (TestRbConfig): fix r39372.

It must see RbConfig::CONFIG instead of CONFIG.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@39383 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2013-02-22 08:37:16 +00:00
parent c84a9acb28
commit 7dd6e08b93
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Fri Feb 22 17:36:23 2013 NARUSE, Yui <naruse@ruby-lang.org>
* test/test_rbconfig.rb (TestRbConfig): fix r39372.
It must see RbConfig::CONFIG instead of CONFIG.
Fri Feb 22 14:55:41 2013 Naohisa Goto <ngotogenome@gmail.com>
* signal.c (ruby_abort): fix typo in r39354 [Bug #5014]

View file

@ -5,7 +5,7 @@ require 'shellwords'
class TestRbConfig < Test::Unit::TestCase
@@with_config = {}
Shellwords::shellwords(CONFIG["configure_args"]).grep(/\A--with-([^=]*)=(.*)/) do
Shellwords::shellwords(RbConfig::CONFIG["configure_args"]).grep(/\A--with-([^=]*)=(.*)/) do
@@with_config[$1.tr('_', '-')] = $2
end