diff options
author | Takashi Kokubun <[email protected]> | 2020-05-01 10:40:43 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2020-05-01 10:40:44 -0700 |
commit | 72c0612c40bc0d9684e870cb93d91ba584a3d35e (patch) | |
tree | 53d021c7b16731f38a01a1e60489d2615338871e /test | |
parent | 28aa5f7fa6d7a37de6a4c348f19cf0a595cc2553 (diff) |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/lib/jit_support.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index 5e803e97bf..b443a6f3a8 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -56,7 +56,7 @@ module JITSupport 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: |