mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
[rubygems/rubygems] These specs seem to work just fine on jruby
https://github.com/rubygems/rubygems/commit/a0219b9f27
This commit is contained in:
parent
fe2b83e225
commit
31663e9e64
Notes:
git
2020-05-08 07:39:22 +09:00
2 changed files with 0 additions and 10 deletions
|
@ -10,8 +10,6 @@ class TestGemExtCmakeBuilder < Gem::TestCase
|
||||||
# Details: https://github.com/rubygems/rubygems/issues/1270#issuecomment-177368340
|
# Details: https://github.com/rubygems/rubygems/issues/1270#issuecomment-177368340
|
||||||
skip "CmakeBuilder doesn't work on Windows." if Gem.win_platform?
|
skip "CmakeBuilder doesn't work on Windows." if Gem.win_platform?
|
||||||
|
|
||||||
skip "CmakeBuilder doesn't work on JRuby." if Gem.java_platform? && ENV["CI"]
|
|
||||||
|
|
||||||
system('cmake', out: IO::NULL, err: [:child, :out])
|
system('cmake', out: IO::NULL, err: [:child, :out])
|
||||||
|
|
||||||
skip 'cmake not present' unless $?.success?
|
skip 'cmake not present' unless $?.success?
|
||||||
|
|
|
@ -18,10 +18,6 @@ class TestGemExtConfigureBuilder < Gem::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_self_build
|
def test_self_build
|
||||||
if java_platform? && ENV["CI"]
|
|
||||||
skip("failing on jruby")
|
|
||||||
end
|
|
||||||
|
|
||||||
skip("test_self_build skipped on MS Windows (VC++)") if vc_windows?
|
skip("test_self_build skipped on MS Windows (VC++)") if vc_windows?
|
||||||
|
|
||||||
File.open File.join(@ext, './configure'), 'w' do |configure|
|
File.open File.join(@ext, './configure'), 'w' do |configure|
|
||||||
|
@ -49,10 +45,6 @@ class TestGemExtConfigureBuilder < Gem::TestCase
|
||||||
end
|
end
|
||||||
|
|
||||||
def test_self_build_fail
|
def test_self_build_fail
|
||||||
if java_platform? && ENV["CI"]
|
|
||||||
skip("failing on jruby")
|
|
||||||
end
|
|
||||||
|
|
||||||
skip("test_self_build_fail skipped on MS Windows (VC++)") if vc_windows?
|
skip("test_self_build_fail skipped on MS Windows (VC++)") if vc_windows?
|
||||||
output = []
|
output = []
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue