From 6477d98e49dbe04deb03caee1a58a34c3b79d4e4 Mon Sep 17 00:00:00 2001 From: Yusuke Endoh Date: Thu, 5 Dec 2019 23:46:42 +0900 Subject: [PATCH] test/lib/jit_support.rb: Update the regexp for icc MJIT_CC is always an absolute path. --- test/lib/jit_support.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/lib/jit_support.rb b/test/lib/jit_support.rb index 872bf4b6996767..82c4a8938b71ca 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], ]