1
0
Fork 0
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:
Benoit Daloze 2020-03-13 13:52:40 +01:00 committed by Hiroshi SHIBATA
parent fe2b83e225
commit 31663e9e64
Notes: git 2020-05-08 07:39:22 +09:00
2 changed files with 0 additions and 10 deletions

View file

@ -10,8 +10,6 @@ class TestGemExtCmakeBuilder < Gem::TestCase
# 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 JRuby." if Gem.java_platform? && ENV["CI"]
system('cmake', out: IO::NULL, err: [:child, :out])
skip 'cmake not present' unless $?.success?

View file

@ -18,10 +18,6 @@ class TestGemExtConfigureBuilder < Gem::TestCase
end
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?
File.open File.join(@ext, './configure'), 'w' do |configure|
@ -49,10 +45,6 @@ class TestGemExtConfigureBuilder < Gem::TestCase
end
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?
output = []