Displaying 4 results from an estimated 4 matches for "giteach".
Did you mean:
citech
2013 Dec 08
2
[LLVMdev] lit: deprecating trailing \ in RUN lines
...ing questions about what's currently tested..
e.g. /Find me all tests for c++11 exceptions/:
|git grep 'RUN:.*c++11' -- test/ | grep exceptions|
.. experimenting with new features or refactoring existing tests..
e.g. /How many tests could we add -fsyntax-only to?/
|giteach perl -pi -e 's/((RUN:.*%clang_cc1)(.*))$/$2
-fsyntax-only$3/g unless
m/(-fsyntax-only|-analyze|-arcmt-check|-arcmt-migrate|-o|-emit-llvm|-E|-ast-print|-ast-dump|[|>]|\\$)/'|
Answer, 405. Then git diff and page through to see if any are
actionable.
and fixing broken tes...
2013 Dec 09
0
[LLVMdev] lit: deprecating trailing \ in RUN lines
...currently tested..
>
> e.g. *Find me all tests for c++11 exceptions*:
>
> git grep 'RUN:.*c++11' -- test/ | grep exceptions
>
>
> .. experimenting with new features or refactoring existing tests..
>
> e.g. *How many tests could we add -fsyntax-only to?*
>
> giteach perl -pi -e 's/((RUN:.*%clang_cc1)(.*))$/$2 -fsyntax-only$3/g
> unless
> m/(-fsyntax-only|-analyze|-arcmt-check|-arcmt-migrate|-o|-emit-llvm|-E|-ast-print|-ast-dump|[|>]|\\$)/'
>
> Answer, 405. Then git diff and page through to see if any are actionable.
>
>
> and fi...
2013 Dec 08
0
[LLVMdev] lit: deprecating trailing \ in RUN lines
On Sun, Dec 8, 2013 at 6:04 AM, Alp Toker <alp at nuanti.com> wrote:
>
> On 08/12/2013 13:12, Chandler Carruth wrote:
>
>>
>> * Removing trailing \ will introduce the neat property that
>>>
>>> one RUN line corresponds precisely to one command that's
>>> executed. This is good for humans and will enable
2013 Dec 08
4
[LLVMdev] lit: deprecating trailing \ in RUN lines
On 08/12/2013 13:12, Chandler Carruth wrote:
>
>> * Removing trailing \ will introduce the neat property that
>> one RUN line corresponds precisely to one command that's
>> executed. This is good for humans and will enable
>> simplifications in the test runner.
>>
>> FWIW, I've never really had a