Right now, all test output is buffered. If a test dies or hangs, you get no output. If your test is too long or goes into an infinite loop, it causes an OOM from all the buffering.
In the past, I could just change the formatter from "xml" to "plain" to get rid of the buffering, but this no longer works. I think this is because Lucene now does it's own buffering to keep output from multiple tests straight? So how can one enable incremental non-buffered-till-end-of-test output these days? -Yonik http://www.lucidimagination.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
