search for: parseintegratedtestscript

Displaying 3 results from an estimated 3 matches for "parseintegratedtestscript".

2013 Dec 10
1
[LLVMdev] lit: deprecating trailing \ in RUN lines
...checking is by hacking into the > tool that actually interprets it (i.e. lit in this case). Considering > that lit is Python, it should be pretty easy to insert an ad-hoc regex > check (or even something substantially more sophisticated). E.g. > insert code into TestRunner.py's parseIntegratedTestScript function. Hi Sean, Let's try to work on that then. It'll be brilliant if we can make this work without churn in the test suite. I had some progress trying to get that working by building a source line table and moving substitutions to later in the processing pipeline so all the source...
2013 Dec 10
0
[LLVMdev] lit: deprecating trailing \ in RUN lines
...c way to do this sort of checking is by hacking into the tool that actually interprets it (i.e. lit in this case). Considering that lit is Python, it should be pretty easy to insert an ad-hoc regex check (or even something substantially more sophisticated). E.g. insert code into TestRunner.py's parseIntegratedTestScript function. -- Sean Silva > > > Alp. > > -- > http://www.nuanti.com > the browser experts > > _______________________________________________ > LLVM Developers mailing list > LLVMdev at cs.uiuc.edu http://llvm.cs.uiuc.edu > http://lists.cs.uiuc.edu/mailm...
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