mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
967ae6278f
not only when !w but also when w == WAITPID_LOCK_ONLY. See also:f7c0cc3692
anda226434206
. We thought this change was an oversight in the latter commit. Without this change, the test fails like: $ make test-all TESTS="../test/ruby/test_process.rb -n test_exec_failure_leaves_no_child" RUN_OPTS="--jit" ... 1) Failure: TestProcess#test_exec_failure_leaves_no_child [/home/k0kubun/src/github.com/ruby/ruby/test/ruby/test_process.rb:2493]: Expected [[26799, #<Process::Status: pid 26799 exit 127>]] to be empty. Co-Authored-By: Yusuke Endoh <mame@ruby-lang.org>
91 lines
2.2 KiB
Ruby
91 lines
2.2 KiB
Ruby
# frozen_string_literal: true
|
|
require 'rubygems/test_case'
|
|
require 'rubygems/ext'
|
|
|
|
class TestGemExtCmakeBuilder < Gem::TestCase
|
|
|
|
def setup
|
|
super
|
|
|
|
# Details: https://github.com/rubygems/rubygems/issues/1270#issuecomment-177368340
|
|
skip "CmakeBuilder doesn't work on Windows." if Gem.win_platform?
|
|
|
|
begin
|
|
_, status = Open3.capture2e('cmake')
|
|
skip 'cmake not present' unless status.success?
|
|
rescue Errno::ENOENT
|
|
skip 'cmake not present'
|
|
end
|
|
|
|
@ext = File.join @tempdir, 'ext'
|
|
@dest_path = File.join @tempdir, 'prefix'
|
|
|
|
FileUtils.mkdir_p @ext
|
|
FileUtils.mkdir_p @dest_path
|
|
end
|
|
|
|
def test_self_build
|
|
File.open File.join(@ext, 'CMakeLists.txt'), 'w' do |cmakelists|
|
|
cmakelists.write <<-EO_CMAKE
|
|
cmake_minimum_required(VERSION 2.6)
|
|
project(self_build NONE)
|
|
install (FILES test.txt DESTINATION bin)
|
|
EO_CMAKE
|
|
end
|
|
|
|
FileUtils.touch File.join(@ext, 'test.txt')
|
|
|
|
output = []
|
|
|
|
Dir.chdir @ext do
|
|
Gem::Ext::CmakeBuilder.build nil, @dest_path, output
|
|
end
|
|
|
|
output = output.join "\n"
|
|
|
|
assert_match \
|
|
%r{^cmake \. -DCMAKE_INSTALL_PREFIX=#{Regexp.escape @dest_path}}, output
|
|
assert_match %r{#{Regexp.escape @ext}}, output
|
|
assert_contains_make_command '', output
|
|
assert_contains_make_command 'install', output
|
|
assert_match %r{test\.txt}, output
|
|
end
|
|
|
|
def test_self_build_fail
|
|
output = []
|
|
|
|
error = assert_raises Gem::InstallError do
|
|
Dir.chdir @ext do
|
|
Gem::Ext::CmakeBuilder.build nil, @dest_path, output
|
|
end
|
|
end
|
|
|
|
output = output.join "\n"
|
|
|
|
shell_error_msg = %r{(CMake Error: .*)}
|
|
sh_prefix_cmake = "cmake . -DCMAKE_INSTALL_PREFIX="
|
|
|
|
assert_match 'cmake failed', error.message
|
|
|
|
assert_match %r{^#{sh_prefix_cmake}#{Regexp.escape @dest_path}}, output
|
|
assert_match %r{#{shell_error_msg}}, output
|
|
end
|
|
|
|
def test_self_build_has_makefile
|
|
File.open File.join(@ext, 'Makefile'), 'w' do |makefile|
|
|
makefile.puts "all:\n\t@echo ok\ninstall:\n\t@echo ok"
|
|
end
|
|
|
|
output = []
|
|
|
|
Dir.chdir @ext do
|
|
Gem::Ext::CmakeBuilder.build nil, @dest_path, output
|
|
end
|
|
|
|
output = output.join "\n"
|
|
|
|
assert_contains_make_command '', output
|
|
assert_contains_make_command 'install', output
|
|
end
|
|
|
|
end
|