* lib/rubygems/specification.rb: Fixed ruby output of requirements
with multiple version specifiers. * test/rubygems/test_gem_ext_cmake_builder.rb: Only look for specific lines in cmake output. Should fix [ruby-trunk - Bug #7579] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@38438 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
87f099d069
commit
b06dfe594e
@ -1,3 +1,10 @@
|
|||||||
|
Tue Dec 18 12:15:59 2012 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
|
* lib/rubygems/specification.rb: Fixed ruby output of requirements
|
||||||
|
with multiple version specifiers.
|
||||||
|
* test/rubygems/test_gem_ext_cmake_builder.rb: Only look for specific
|
||||||
|
lines in cmake output. Should fix [ruby-trunk - Bug #7579]
|
||||||
|
|
||||||
Tue Dec 18 11:45:26 2012 Eric Hodel <drbrain@segment7.net>
|
Tue Dec 18 11:45:26 2012 Eric Hodel <drbrain@segment7.net>
|
||||||
|
|
||||||
* doc/syntax/literals.rdoc: Added 0o octal integers.
|
* doc/syntax/literals.rdoc: Added 0o octal integers.
|
||||||
|
@ -1,3 +1,4 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
#--
|
#--
|
||||||
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
# Copyright 2006 by Chad Fowler, Rich Kilmer, Jim Weirich and others.
|
||||||
# All rights reserved.
|
# All rights reserved.
|
||||||
@ -2048,7 +2049,9 @@ class Gem::Specification
|
|||||||
when Numeric then obj.inspect
|
when Numeric then obj.inspect
|
||||||
when true, false, nil then obj.inspect
|
when true, false, nil then obj.inspect
|
||||||
when Gem::Platform then "Gem::Platform.new(#{obj.to_a.inspect})"
|
when Gem::Platform then "Gem::Platform.new(#{obj.to_a.inspect})"
|
||||||
when Gem::Requirement then "Gem::Requirement.new(#{obj.to_s.inspect})"
|
when Gem::Requirement then
|
||||||
|
list = obj.as_list
|
||||||
|
"Gem::Requirement.new(#{ruby_code(list.size == 1 ? obj.to_s : list)})"
|
||||||
else raise Gem::Exception, "ruby_code case not handled: #{obj.class}"
|
else raise Gem::Exception, "ruby_code case not handled: #{obj.class}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -24,8 +24,8 @@ cmake_minimum_required(VERSION 2.8)
|
|||||||
install (FILES test.txt DESTINATION bin)
|
install (FILES test.txt DESTINATION bin)
|
||||||
eo_cmake
|
eo_cmake
|
||||||
end
|
end
|
||||||
File.open File.join(@ext, 'test.txt'), 'w' do |testfile|
|
|
||||||
end
|
FileUtils.touch File.join(@ext, 'test.txt')
|
||||||
|
|
||||||
output = []
|
output = []
|
||||||
|
|
||||||
@ -33,12 +33,14 @@ install (FILES test.txt DESTINATION bin)
|
|||||||
Gem::Ext::CmakeBuilder.build nil, nil, @dest_path, output
|
Gem::Ext::CmakeBuilder.build nil, nil, @dest_path, output
|
||||||
end
|
end
|
||||||
|
|
||||||
assert_equal "cmake . -DCMAKE_INSTALL_PREFIX=#{@dest_path}", output.shift
|
output = output.join "\n"
|
||||||
assert_match(/#{@ext}/, output.shift)
|
|
||||||
assert_equal make_command, output.shift
|
assert_match \
|
||||||
assert_equal "", output.shift.gsub(/^make\[1\]: (?:Entering|Leaving) directory .*\n/,"")
|
%r%^cmake \. -DCMAKE_INSTALL_PREFIX=#{Regexp.escape @dest_path}%, output
|
||||||
assert_equal make_command + " install", output.shift
|
assert_match %r%#{Regexp.escape @ext}%, output
|
||||||
assert_match(/test\.txt/, output.shift)
|
assert_match %r%^#{Regexp.escape make_command}$%, output
|
||||||
|
assert_match %r%^#{Regexp.escape make_command} install$%, output
|
||||||
|
assert_match %r%test\.txt%, output
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_self_build_fail
|
def test_self_build_fail
|
||||||
@ -50,6 +52,8 @@ install (FILES test.txt DESTINATION bin)
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
output = output.join "\n"
|
||||||
|
|
||||||
shell_error_msg = %r{(CMake Error: .*)}
|
shell_error_msg = %r{(CMake Error: .*)}
|
||||||
sh_prefix_cmake = "cmake . -DCMAKE_INSTALL_PREFIX="
|
sh_prefix_cmake = "cmake . -DCMAKE_INSTALL_PREFIX="
|
||||||
|
|
||||||
@ -61,9 +65,8 @@ install (FILES test.txt DESTINATION bin)
|
|||||||
|
|
||||||
assert_match expected, error.message
|
assert_match expected, error.message
|
||||||
|
|
||||||
assert_equal "#{sh_prefix_cmake}#{@dest_path}", output.shift
|
assert_match %r%^#{sh_prefix_cmake}#{Regexp.escape @dest_path}%, output
|
||||||
assert_match %r(#{shell_error_msg}), output.shift
|
assert_match %r%#{shell_error_msg}%, output
|
||||||
assert_equal true, output.empty?
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_self_build_has_makefile
|
def test_self_build_has_makefile
|
||||||
@ -72,12 +75,15 @@ install (FILES test.txt DESTINATION bin)
|
|||||||
end
|
end
|
||||||
|
|
||||||
output = []
|
output = []
|
||||||
|
|
||||||
Dir.chdir @ext do
|
Dir.chdir @ext do
|
||||||
Gem::Ext::CmakeBuilder.build nil, nil, @dest_path, output
|
Gem::Ext::CmakeBuilder.build nil, nil, @dest_path, output
|
||||||
end
|
end
|
||||||
|
|
||||||
assert_equal make_command, output[0]
|
output = output.join "\n"
|
||||||
assert_equal "#{make_command} install", output[2]
|
|
||||||
|
assert_match %r%^#{make_command}%, output
|
||||||
|
assert_match %r%^#{make_command} install%, output
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
Loading…
x
Reference in New Issue
Block a user