: > [junit] Testcase: testMaxTime(org.apache.solr.update.AutoCommitTest): FAILED : > [junit] null : > [junit] junit.framework.AssertionFailedError: null : > [junit] at org.apache.solr.update.AutoCommitTest.testMaxTime(AutoCommitTest.java:192) : : Hmmm, the code on this line is: : assertTrue(trigger.waitForCommit(30000)); : : The only place I can see that might cause a NPE to be thrown is line 65:
there's nothing there to indicate an NPE... the "null" in the exception message is just because the single arg version of assertTrue was used (ie: the message is null) the failure is just saying that trigger.waitForCommit(30000) returned false. : Where can the logging output be accessed in the hudson builds? good question ... normally it's included in the *.xml test result files as part of stderr, but it doesn't seem to be there when hudson runs the tests (it's probably getting consumed by the LogManager of the running Hudson instance. -Hoss --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
