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

* test/rubygems/gemutilities.rb: check ENV['make'] for make_command.

* test/rubygems/test_gem_ext_configure_builder.rb: use gemutilities' make_command.
	* test/rubygems/test_gem_ext_ext_conf_builder.rb: ditto.
	


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@28461 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
tarui 2010-06-28 16:01:22 +00:00
parent 5b5c6378c7
commit 5f960a9ca2
3 changed files with 6 additions and 12 deletions

View file

@ -30,9 +30,9 @@ class TestGemExtConfigureBuilder < RubyGemTestCase
assert_equal "sh ./configure --prefix=#{@dest_path}", output.shift
assert_equal "", output.shift
assert_equal "make", output.shift
assert_equal make_command, output.shift
assert_match(/^ok$/m, output.shift)
assert_equal "make install", output.shift
assert_equal make_command + " install", output.shift
assert_match(/^ok$/m, output.shift)
end