You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by "Dawid Weiss (Resolved) (JIRA)" <ji...@apache.org> on 2012/03/09 09:08:55 UTC

[jira] [Resolved] (LUCENE-3857) exceptions from other threads in beforeclass/etc do not fail the test

     [ https://issues.apache.org/jira/browse/LUCENE-3857?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Dawid Weiss resolved LUCENE-3857.
---------------------------------

       Resolution: Fixed
    Fix Version/s: 4.0
                   3.6
    
> 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
>            Assignee: Dawid Weiss
>             Fix For: 3.6, 4.0
>
>         Attachments: LUCENE-3857.patch
>
>
> 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: dev-unsubscribe@lucene.apache.org
For additional commands, e-mail: dev-help@lucene.apache.org