[jboss-jira] [JBoss JIRA] Commented: (JBAS-4690) TransactionLocal tests are not run against the proper transaction manager
Dimitris Andreadis (JIRA)
jira-events at lists.jboss.org
Mon Sep 24 05:42:41 EDT 2007
[ http://jira.jboss.com/jira/browse/JBAS-4690?page=comments#action_12378277 ]
Dimitris Andreadis commented on JBAS-4690:
------------------------------------------
There was a glitch causing ~300 cmp2 tests to regress:
trunk/testsuite/src/main/org/jboss/test/util/ejb/EJBTestRunnerBean.java
...
private static boolean wantUserTransaction(Properties props)
{
- return props.get("NO_USER_TRANSACTION") == null;
+ return props == null || props.get("NO_USER_TRANSACTION") == null;
}
> TransactionLocal tests are not run against the proper transaction manager
> -------------------------------------------------------------------------
>
> Key: JBAS-4690
> URL: http://jira.jboss.com/jira/browse/JBAS-4690
> Project: JBoss Application Server
> Issue Type: Sub-task
> Security Level: Public(Everyone can see)
> Components: Test Suite
> Affects Versions: JBossAS-4.2.1.GA
> Reporter: Adrian Brock
> Assigned To: Jonathan Halliday
> Priority: Critical
> Fix For: JBossAS-5.0.0.Beta3, JBossAS-4.2.2.GA
>
>
> The transaction local tests (and a number of other TM tests) are not run against transaction manager
> actually used by the AS. They are run against the old TxManager on the client side of the test.
> There is a related issue to fix this so we can remove the TxManager from the jboss-head codebase,
> I'm going to link that task. But the testsuite issues need resolving in 4.2.x as well.
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the jboss-jira
mailing list