summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorYusuke Endoh <mame@ruby-lang.org>2019-12-05 23:46:42 +0900
committerYusuke Endoh <mame@ruby-lang.org>2019-12-05 23:46:42 +0900
commit6477d98e49dbe04deb03caee1a58a34c3b79d4e4 (patch)
tree59cdcdd3a224d1d528572f1d8472e6721801961c /test
parentd43b9eb22de1b1cd8de09a161cc836413cc158a1 (diff)
test/lib/jit_support.rb: Update the regexp for icc
MJIT_CC is always an absolute path.
Diffstat (limited to 'test')
-rw-r--r--test/lib/jit_support.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb
index 872bf4b699..82c4a8938b 100644
--- a/test/lib/jit_support.rb
+++ b/test/lib/jit_support.rb
@@ -5,7 +5,7 @@ module JITSupport
JIT_SUCCESS_PREFIX = 'JIT success \(\d+\.\dms\)'
JIT_COMPACTION_PREFIX = 'JIT compaction \(\d+\.\dms\)'
UNSUPPORTED_COMPILERS = [
- %r[\Aicc\b],
+ %r[\A/opt/intel/.*/bin/intel64/icc\b],
%r[\A/opt/developerstudio\d+\.\d+/bin/cc\z],
]