[cfe-commits] r122753 - /cfe/trunk/test/lit.cfg

David Greene greened at obbligato.org
Mon Jan 3 09:28:52 PST 2011


Author: greened
Date: Mon Jan  3 11:28:52 2011
New Revision: 122753

URL: http://llvm.org/viewvc/llvm-project?rev=122753&view=rev
Log:

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.

Modified:
    cfe/trunk/test/lit.cfg

Modified: cfe/trunk/test/lit.cfg
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/test/lit.cfg?rev=122753&r1=122752&r2=122753&view=diff
==============================================================================
--- cfe/trunk/test/lit.cfg (original)
+++ cfe/trunk/test/lit.cfg Mon Jan  3 11:28:52 2011
@@ -138,7 +138,7 @@
 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'. ***""") )





More information about the cfe-commits mailing list