diff options
author | Yusuke Endoh <[email protected]> | 2020-03-04 12:31:11 +0900 |
---|---|---|
committer | Yusuke Endoh <[email protected]> | 2020-03-04 12:31:55 +0900 |
commit | 16415fefc14e1419d5587288fb6a69fe5ccf94ba (patch) | |
tree | 7c48fe81275de3106bd9512b187ecf49a1eb9d54 | |
parent | aa44b29030208106e75c12c3325350ebad4161b8 (diff) |
test/lib/jit_support.rb: The path to icc was changed
-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 82c4a8938b..018a364373 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[\A/opt/intel/.*/bin/intel64/icc\b], + %r[\A.*/bin/intel64/icc\b], %r[\A/opt/developerstudio\d+\.\d+/bin/cc\z], ] |