ruby-changes:60972
From: Takashi <ko1@a...>
Date: Sat, 2 May 2020 02:41:12 +0900 (JST)
Subject: [ruby-changes:60972] 72c0612c40 (master): Skip Solaris RubyCI TestJIT for now
https://git.ruby-lang.org/ruby.git/commit/?id=72c0612c40 From 72c0612c40bc0d9684e870cb93d91ba584a3d35e Mon Sep 17 00:00:00 2001 From: Takashi Kokubun <takashikkbn@g...> Date: Fri, 1 May 2020 10:40:43 -0700 Subject: Skip Solaris RubyCI TestJIT for now to be investigated later https://rubyci.org/logs/rubyci.s3.amazonaws.com/solaris10-gcc/ruby-master/log/20200501T160004Z.fail.html.gz diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index 5e803e9..b443a6f 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -56,7 +56,7 @@ module JITSupport https://github.com/ruby/ruby/blob/trunk/test/lib/jit_support.rb#L56 return @supported if defined?(@supported) @supported = UNSUPPORTED_COMPILERS.all? do |regexp| !regexp.match?(RbConfig::CONFIG['MJIT_CC']) - end && RbConfig::CONFIG["MJIT_SUPPORT"] != 'no' && !PENDING_RUBYCI_NICKNAMES.include?(ENV['RUBYCI_NICKNAME']) && !vs120_pdb_corrupted? && /mingw/ !~ RUBY_PLATFORM # TODO: remove mingw exclusion after investigation + end && RbConfig::CONFIG["MJIT_SUPPORT"] != 'no' && !PENDING_RUBYCI_NICKNAMES.include?(ENV['RUBYCI_NICKNAME']) && !vs120_pdb_corrupted? && /mingw/ !~ RUBY_PLATFORM && /solaris/ !~ RUBY_PLATFORM # TODO: remove mingw / solaris exclusion after investigation end # AppVeyor's Visual Studio 2013 is known to spuriously generate broken pch / pdb, like: -- cgit v0.10.2 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/