From: David Greene Date: Mon, 3 Jan 2011 17:28:52 +0000 (+0000) Subject: Support lit fixes for PR8199 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=431feb579ddff4faa16106a95a332b7ad6f51da1;p=clang Support lit fixes for PR8199 Replace "clang++" with "clang\+\+" because we have to escape regexp special characters now. This is in preparation for changes to lit to fix PR8199. Tests will fail until the lit part gets committed. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@122753 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/test/lit.cfg b/test/lit.cfg index 071284f955..5dec8ff477 100644 --- a/test/lit.cfg +++ b/test/lit.cfg @@ -138,7 +138,7 @@ config.substitutions.append( ('%test_debuginfo', ' ' + config.llvm_src_root + '/ config.substitutions.append( (' clang ', """*** Do not use 'clang' in tests, use '%clang'. ***""") ) config.substitutions.append( - (' clang++ ', """*** Do not use 'clang++' in tests, use '%clangxx'. ***""")) + (' clang\+\+ ', """*** Do not use 'clang++' in tests, use '%clangxx'. ***""")) config.substitutions.append( (' clang-cc ', """*** Do not use 'clang-cc' in tests, use '%clang_cc1'. ***""") )