diff options
author | Yusuke Endoh <[email protected]> | 2019-12-05 23:46:42 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2019-12-05 23:46:42 +0900 |
commit | 6477d98e49dbe04deb03caee1a58a34c3b79d4e4 (patch) | |
tree | 59cdcdd3a224d1d528572f1d8472e6721801961c | |
parent | d43b9eb22de1b1cd8de09a161cc836413cc158a1 (diff) |
test/lib/jit_support.rb: Update the regexp for icc
MJIT_CC is always an absolute path.
-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 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], ] |