summaryrefslogtreecommitdiff
path: root/test/rubygems/test_gem_ext_ext_conf_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_ext_conf_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_ext_conf_builder.rb')
-rw-r--r--test/rubygems/test_gem_ext_ext_conf_builder.rb16
1 files changed, 8 insertions, 8 deletions
diff --git a/test/rubygems/test_gem_ext_ext_conf_builder.rb b/test/rubygems/test_gem_ext_ext_conf_builder.rb
index fc431f5084..3b1d1c6777 100644
--- a/test/rubygems/test_gem_ext_ext_conf_builder.rb
+++ b/test/rubygems/test_gem_ext_ext_conf_builder.rb
@@ -16,11 +16,11 @@ class TestGemExtExtConfBuilder < Gem::TestCase
def test_class_build
if java_platform?
- skip("failing on jruby")
+ pend("failing on jruby")
end
if vc_windows? && !nmake_found?
- skip("test_class_build skipped - nmake not found")
+ pend("test_class_build skipped - nmake not found")
end
File.open File.join(@ext, 'extconf.rb'), 'w' do |extconf|
@@ -45,7 +45,7 @@ class TestGemExtExtConfBuilder < Gem::TestCase
def test_class_build_rbconfig_make_prog
if java_platform?
- skip("failing on jruby")
+ pend("failing on jruby")
end
configure_args do
@@ -70,7 +70,7 @@ class TestGemExtExtConfBuilder < Gem::TestCase
ENV['MAKE'] = 'anothermake'
if java_platform?
- skip("failing on jruby")
+ pend("failing on jruby")
end
configure_args '' do
@@ -93,7 +93,7 @@ class TestGemExtExtConfBuilder < Gem::TestCase
def test_class_build_extconf_fail
if vc_windows? && !nmake_found?
- skip("test_class_build_extconf_fail skipped - nmake not found")
+ pend("test_class_build_extconf_fail skipped - nmake not found")
end
File.open File.join(@ext, 'extconf.rb'), 'w' do |extconf|
@@ -119,7 +119,7 @@ class TestGemExtExtConfBuilder < Gem::TestCase
def test_class_build_extconf_success_without_warning
if vc_windows? && !nmake_found?
- skip("test_class_build_extconf_fail skipped - nmake not found")
+ pend("test_class_build_extconf_fail skipped - nmake not found")
end
File.open File.join(@ext, 'extconf.rb'), 'w' do |extconf|
@@ -139,7 +139,7 @@ class TestGemExtExtConfBuilder < Gem::TestCase
def test_class_build_unconventional
if vc_windows? && !nmake_found?
- skip("test_class_build skipped - nmake not found")
+ pend("test_class_build skipped - nmake not found")
end
File.open File.join(@ext, 'extconf.rb'), 'w' do |extconf|
@@ -180,7 +180,7 @@ end
def test_class_make
if vc_windows? && !nmake_found?
- skip("test_class_make skipped - nmake not found")
+ pend("test_class_make skipped - nmake not found")
end
output = []