summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_ext_configure_builder.rb
diff options
context:
space:
mode:
authorHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-11 18:21:00 +0900
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-05-12 17:24:43 +0900
commitd33888bf9656818e74401a28dc4725fc8b43ea03 (patch)
treec1d3f53142302829d589a6fab9a54bdc42086012 /test/rubygems/test_gem_ext_configure_builder.rb
parent129bc04ab7fb36f8a9e89cbe0264918bd7cc1d02 (diff)
[rubygems/rubygems] Replace skip to pend
https://github.com/rubygems/rubygems/commit/0b145135c7
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4491
Diffstat (limited to 'test/rubygems/test_gem_ext_configure_builder.rb')
-rw-r--r--test/rubygems/test_gem_ext_configure_builder.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/rubygems/test_gem_ext_configure_builder.rb b/test/rubygems/test_gem_ext_configure_builder.rb
index a9dc9c2f65..87260bcfa2 100644
--- a/test/rubygems/test_gem_ext_configure_builder.rb
+++ b/test/rubygems/test_gem_ext_configure_builder.rb
@@ -17,7 +17,7 @@ class TestGemExtConfigureBuilder < Gem::TestCase
end
def test_self_build
- skip("test_self_build skipped on MS Windows (VC++)") if vc_windows?
+ pend("test_self_build skipped on MS Windows (VC++)") if vc_windows?
File.open File.join(@ext, './configure'), 'w' do |configure|
configure.puts "#!/bin/sh\necho \"#{@makefile_body}\" > Makefile"
@@ -42,7 +42,7 @@ class TestGemExtConfigureBuilder < Gem::TestCase
end
def test_self_build_fail
- skip("test_self_build_fail skipped on MS Windows (VC++)") if vc_windows?
+ pend("test_self_build_fail skipped on MS Windows (VC++)") if vc_windows?
output = []
error = assert_raise Gem::InstallError do
@@ -62,7 +62,7 @@ class TestGemExtConfigureBuilder < Gem::TestCase
def test_self_build_has_makefile
if vc_windows? && !nmake_found?
- skip("test_self_build_has_makefile skipped - nmake not found")
+ pend("test_self_build_has_makefile skipped - nmake not found")
end
File.open File.join(@ext, 'Makefile'), 'w' do |makefile|