diff options
author | Takashi Kokubun <[email protected]> | 2020-04-13 23:11:44 -0700 |
---|---|---|
committer | Takashi Kokubun <[email protected]> | 2020-04-13 23:11:51 -0700 |
commit | e667750364acde6db8a27108cf88ff83b63cf53a (patch) | |
tree | cac28c35749f06db0bb72c5125bbcb1da26d5ed1 /test/lib/jit_support.rb | |
parent | 70b7304f036a55d526e3c67fe31ad3ce949ae13f (diff) |
Add missing call in 70b7304f03
Diffstat (limited to 'test/lib/jit_support.rb')
-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 c9cbde21f4..cc101d6043 100644 --- a/test/lib/jit_support.rb +++ b/test/lib/jit_support.rb @@ -54,7 +54,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']) + end && RbConfig::CONFIG["MJIT_SUPPORT"] != 'no' && !PENDING_RUBYCI_NICKNAMES.include?(ENV['RUBYCI_NICKNAME']) && !vs120_pdb_corrupted? end # AppVeyor's Visual Studio 2013 is known to spuriously generate broken pch / pdb, like: |