aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Greene <greened@obbligato.org>2011-01-03 17:28:52 +0000
committerDavid Greene <greened@obbligato.org>2011-01-03 17:28:52 +0000
commit431feb579ddff4faa16106a95a332b7ad6f51da1 (patch)
tree1d2bcfb5a079bbc5d112930e92020b81e4fd905d
parentdee196ef31073b40c48d60d9fa626ee1d8daaaee (diff)
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
-rw-r--r--test/lit.cfg2
1 files changed, 1 insertions, 1 deletions
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'. ***""") )