19 Mar
2015
19 Mar
'15
7:41 p.m.
On 03/19/2015 12:30 PM, Michael Caisse wrote:
On 03/18/2015 02:09 PM, Robert Ramey wrote:
Steven Watanabe-4 wrote
I just use b2 | less
LOL - for 250 tests with multiple compilers/configurations? and re-run b2 every time you want to go back and see a previous result?
Seriously - how do other people deal with this?
Robert Ramey
We have 230 top level tests in Spirit. I use:
b2 > out.txt
a simple:
grep failed out.txt | wc -l
Well.... grep "^\*\*passed" out.txt | wc -l will get the passed ones. I have actually have some post processing that I do for the automated Bamboo builds to show failures differently. The above expression wont actually work for what you want. Adjust the grep expression to meet your needs. (o;