[ 
https://issues.apache.org/jira/browse/LUCENE-3857?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13225237#comment-13225237
 ] 

Dawid Weiss commented on LUCENE-3857:
-------------------------------------

This is solved by 3808 but I can also fix it on the trunk if you need a 
temporary fix.
                
> 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]

Reply via email to