exceptions from other threads in beforeclass/etc do not fail the test
---------------------------------------------------------------------
Key: LUCENE-3857
URL: https://issues.apache.org/jira/browse/LUCENE-3857
Project: Lucene - Java
Issue Type: Task
Reporter: Robert Muir
Lots of tests create indexes in beforeClass methods, but if an exception is
thrown from another thread
it won't fail the test... e.g. this test passes:
{code}
public class TestExc extends LuceneTestCase {
@BeforeClass
public static void beforeClass() {
new Thread() {
public void run() {
throw new RuntimeException("boo!");
}
}.start();
}
public void test() { }
}
{code}
this is because the uncaught exception handler is in setup/teardown
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators:
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]