[jbossseam-issues] [JBoss JIRA] Commented: (JBSEAM-3305) Seam testsuite skipping and failing many tests on windows XP machine

Dieter Rehbein (JIRA) jira-events at lists.jboss.org
Tue May 26 13:27:56 EDT 2009


    [ https://jira.jboss.org/jira/browse/JBSEAM-3305?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12469193#action_12469193 ] 

Dieter Rehbein commented on JBSEAM-3305:
----------------------------------------

I've fixed the problem by adding a Bootstrap.getInstace().shutdown() to the method stopSeam(). For my project I've created a subclass of the DBUnitSeamTest, which is the baseclass for all tests:


public class TestBase extends DBUnitSeamTest
{
   ....
  @Override
  protected void stopSeam() throws Exception {
	super.stopSeam();
	Bootstrap.getInstance().shutdown();
  }
  ....   
}


Hope, that helps...




> Seam testsuite skipping and failing many tests on windows XP machine
> --------------------------------------------------------------------
>
>                 Key: JBSEAM-3305
>                 URL: https://jira.jboss.org/jira/browse/JBSEAM-3305
>             Project: Seam
>          Issue Type: Bug
>          Components: Test Harness
>    Affects Versions: 2.1.0.BETA1
>         Environment: windows XP
> JDK5
>            Reporter: Jay Balunas
>            Assignee: Ondrej Skutka
>             Fix For: 2.2.0.CR1
>
>
> When running "ant testall testreport" on windows XP there are many failures and skipped tests.  It appears to be a timing or io conflict with an hsql localDB.lck file in the embedded server.  
> When you "ant test" the same examples individually they work fine.

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list