|
From: Bill B. <pat...@us...> - 2003-10-23 04:04:47
|
User: patriot1burke
Date: 03/10/21 21:31:59
Modified: . Tag: Branch_3_2 build.xml
Log:
* connector. Added a new switch set-tx-query-timeout
If this is true, statement.setQueryTimeout is called with the time left in the current transaction
* Added a one level deep prefetch for relationships that have a field that maps to another related entity. This only works for on-find and only if you have <read-ahead> defined for that side of the relationship
* Pulled java.io.ObjectInputStream and ObjectOutputStream into common/src/main/org/jboss/io so that I could remove some synchronizations within ObjectStreamClass and minimize the class descriptor marshalling and to create a class cache for resolveClass.
* Improved Pooled Invoker performance by over 100%. It is now more than twice as fast as RMI
Revision Changes Path
No revision
No revision
1.165.2.114 +4 -4 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.113
retrieving revision 1.165.2.114
diff -u -r1.165.2.113 -r1.165.2.114
--- build.xml 6 Oct 2003 13:30:25 -0000 1.165.2.113
+++ build.xml 22 Oct 2003 04:31:58 -0000 1.165.2.114
@@ -15,7 +15,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.165.2.113 2003/10/06 13:30:25 ejort Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.114 2003/10/22 04:31:58 patriot1burke Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -206,8 +206,8 @@
<!-- Override JUnit defaults -->
<property name="junit.timeout" value="180000"/> <!-- 3 minutes -->
- <property name="jbosstest.iterationcount" value="10"/>
- <property name="jbosstest.threadcount" value="5"/>
+ <property name="jbosstest.iterationcount" value="50"/>
+ <property name="jbosstest.threadcount" value="200"/>
<property name="jbosstest.beancount" value="5"/>
<property name="jbosstest.nodeploy" value="false"/>
<property name="junit.batchtest.todir" value="${build.reports}"/>
@@ -5298,7 +5298,7 @@
| name in -Dtest=dirname in tests/dirname/test/**TestCase.class
-->
- <target name="test" depends="maybejars" if="test"
+ <target name="test" depends="init" if="test"
description="Execute a single test.">
<mkdir dir="${build.reports}"/>
<mkdir dir="${build.testlog}"/>
|