aboutsummaryrefslogtreecommitdiffstats
path: root/test/lib
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib')
-rw-r--r--test/lib/jit_support.rb7
1 files changed, 5 insertions, 2 deletions
diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb
index 82f53ec59d..a1bd881e6f 100644
--- a/test/lib/jit_support.rb
+++ b/test/lib/jit_support.rb
@@ -4,7 +4,8 @@ module JITSupport
JIT_TIMEOUT = 600 # 10min for each...
JIT_SUCCESS_PREFIX = 'JIT success \(\d+\.\dms\)'
UNSUPPORTED_COMPILERS = [
- 'icc',
+ %r[\Aicc\z],
+ %r[\A/opt/developerstudio\d+\.\d+/bin/cc\z],
]
module_function
@@ -42,7 +43,9 @@ module JITSupport
def supported?
return @supported if defined?(@supported)
- @supported = !UNSUPPORTED_COMPILERS.include?(RbConfig::CONFIG['CC'])
+ @supported = UNSUPPORTED_COMPILERS.all? do |regexp|
+ !regexp.match?(RbConfig::CONFIG['CC'])
+ end
end
def remove_mjit_logs(stderr)