Dan Rollo wrote:
I ran the qa test suite locally, and see this output:[java] # of tests started = 1411 [java] # of tests completed = 1411 [java] # of tests skipped = 47 [java] # of tests passed = 1410 [java] # of tests failed = 1 [java] [java] ----------------------------------------- [java] [java] Date finished: [java] Fri Mar 08 10:17:11 EST 2013 [java] Time elapsed: [java] 59845 seconds [java] [java] Java Result: 1 So my silly question: Where can I find the info for the 1 failed test? Thanks, Dan
If you've called ant qa.run, the results are printed to STDOUT, I usually redirect it to a file then grep the result for "test failed".
If you've called ant hudson-qa, the results are in qa/result/index.html Cheers, Peter.
