[cfe-commits] Need A Clang Developer [was: Re: [llvm-commits] [llvm] r122346 - in /llvm/trunk: docs/TestingGuide.html test/lit.cfg utils/lit/lit/TestRunner.py]

David A. Greene greened at obbligato.org
Tue Dec 21 12:21:28 PST 2010


David Greene <greened at obbligato.org> writes:

> Author: greened
> Date: Tue Dec 21 11:25:43 2010
> New Revision: 122346
>
> URL: http://llvm.org/viewvc/llvm-project?rev=122346&view=rev
> Log:
>
> Revert 122341.  It breaks some darwin tests.

I found the problem.  In clang/test/lit.cfg:

config.substitutions.append(
    (' clang++ ', """*** Do not use 'clang++' in tests, use '%clangxx'. ***"""))

Since TestRunner.py will use regexp substitution to fix lit issues,
"clang++" needs to be escaped as "clang\+\+."  I don't believe I have
commit permission to cfe.  The change will need to be coordinated with
the change to lit in the LLVM tree.

Who can fix this on the cfe end?

                                -Dave



More information about the cfe-commits mailing list