JBoss Remoting SVN: r4108 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisocket.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-05-01 03:20:45 -0400 (Thu, 01 May 2008)
New Revision: 4108
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisocket/BisocketTestCase.java
Log:
JBREM-930: In testDeadControlConnectionShutdown() make multiple attempts to restart Connector.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisocket/BisocketTestCase.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisocket/BisocketTestCase.java 2008-05-01 07:08:01 UTC (rev 4107)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/bisocket/BisocketTestCase.java 2008-05-01 07:20:45 UTC (rev 4108)
@@ -1960,7 +1960,21 @@
}
connector.stop();
log.info("STOPPED CONNECTOR");
- internalSetUp(port);
+
+ for (int i = 0; i < 5; i++)
+ {
+ try
+ {
+ internalSetUp(port);
+ break;
+ }
+ catch (Exception e)
+ {
+ log.info("unable to restart connector: retrying in 60 seconds");
+ Thread.sleep(60000);
+ }
+ }
+
log.info("RESTARTED CONNECTOR");
// Wait until a failure has been detected on the control connection.
16 years, 6 months
JBoss Remoting SVN: r4107 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/metadata.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-05-01 03:08:01 -0400 (Thu, 01 May 2008)
New Revision: 4107
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/metadata/MetadataTestCase.java
Log:
JBREM-930: Allows for subsystems of extraneous servers.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/metadata/MetadataTestCase.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/metadata/MetadataTestCase.java 2008-05-01 06:54:17 UTC (rev 4106)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/metadata/MetadataTestCase.java 2008-05-01 07:08:01 UTC (rev 4107)
@@ -50,6 +50,7 @@
import java.net.InetAddress;
import java.security.AccessController;
import java.security.PrivilegedAction;
+import java.util.HashSet;
import java.util.List;
import java.util.Random;
@@ -62,9 +63,9 @@
public class MetadataTestCase extends TestCase implements NotificationListener
{
private static int secret = Math.abs(new Random().nextInt(2000));
-
- private String subSystem = null;
+ private HashSet subSystems = new HashSet();
+
public MetadataTestCase(String name)
{
super(name);
@@ -127,7 +128,7 @@
checkForConnector(reg2);
// now check to make sure got the subsystem as expected
- assertEquals("MOCK", subSystem);
+ assertTrue(subSystems.contains("MOCK"));
}
finally
{
@@ -208,8 +209,14 @@
{
NetworkNotification netNot = (NetworkNotification) notification;
ServerInvokerMetadata[] serverMetadata = netNot.getServerInvokers();
- if (serverMetadata.length > 0)
- subSystem = serverMetadata[0].getSubSystems()[0];
+ for (int i = 0; i < serverMetadata.length; i++)
+ {
+ String[] ss = serverMetadata[i].getSubSystems();
+ for (int j = 0; j < ss.length; j++)
+ {
+ subSystems.add(ss[j]);
+ }
+ }
}
}
16 years, 6 months
JBoss Remoting SVN: r4106 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/ssl/serversocketrefresh.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-05-01 02:54:17 -0400 (Thu, 01 May 2008)
New Revision: 4106
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/ssl/serversocketrefresh/TestCase.java
Log:
JBREM-930: Raised log level to TRACE.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/ssl/serversocketrefresh/TestCase.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/ssl/serversocketrefresh/TestCase.java 2008-05-01 06:10:49 UTC (rev 4105)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/transport/socket/ssl/serversocketrefresh/TestCase.java 2008-05-01 06:54:17 UTC (rev 4106)
@@ -1,6 +1,7 @@
package org.jboss.test.remoting.transport.socket.ssl.serversocketrefresh;
import org.apache.log4j.Level;
import org.jboss.jrunit.harness.TestDriver;
+import org.jboss.logging.XLevel;
/**
* JBREM-427 load a new keystore at runtime<br>
@@ -21,6 +22,6 @@
protected Level getTestLogLevel()
{
- return Level.INFO;
+ return XLevel.TRACE;
}
}
16 years, 6 months
JBoss Remoting SVN: r4105 - remoting2/branches/2.x/lib/jboss.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-05-01 02:10:49 -0400 (Thu, 01 May 2008)
New Revision: 4105
Modified:
remoting2/branches/2.x/lib/jboss/jrunit.jar
Log:
JBREM-238: Removed some temporary error logging statements.
Modified: remoting2/branches/2.x/lib/jboss/jrunit.jar
===================================================================
(Binary files differ)
16 years, 6 months
JBoss Remoting SVN: r4104 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/registry.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-05-01 02:02:03 -0400 (Thu, 01 May 2008)
New Revision: 4104
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/registry/NetworkRegistryTestCase.java
Log:
JBREM-930: Ignores extraneous servers.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/registry/NetworkRegistryTestCase.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/registry/NetworkRegistryTestCase.java 2008-05-01 03:09:40 UTC (rev 4103)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/registry/NetworkRegistryTestCase.java 2008-05-01 06:02:03 UTC (rev 4104)
@@ -52,6 +52,8 @@
private String subSystem = null;
private int numOfAdded = 0;
private int numOfUpdated = 0;
+ private InvokerLocator locator1;
+ private InvokerLocator locator2;
public void testRegistration() throws Exception
{
@@ -84,7 +86,8 @@
int port = TestUtil.getRandomPort();
String host = InetAddress.getLocalHost().getHostAddress();
String bindAddr = System.getProperty("jrunit.bind_addr", host);
- InvokerLocator locator1 = new InvokerLocator("socket://" + bindAddr + ":" + port);
+ locator1 = new InvokerLocator("socket://" + bindAddr + ":" + port);
+ log.info("InvokerLocator1: " + locator1);
Connector connector1 = new Connector(locator1);
ObjectName obj = new ObjectName("jboss.remoting:type=Connector,transport=" + locator1.getProtocol());
registerMBean(server1, connector1, obj);
@@ -122,7 +125,8 @@
addNotificationListener(server2, new ObjectName("remoting:type=NetworkRegistry"), this);
port = TestUtil.getRandomPort();
- InvokerLocator locator2 = new InvokerLocator("socket://" + bindAddr + ":" + port);
+ locator2 = new InvokerLocator("socket://" + bindAddr + ":" + port);
+ log.info("InvokerLocator2: " + locator2);
Connector connector2 = new Connector(locator2);
ObjectName obj2 = new ObjectName("jboss.remoting:type=Connector,transport=" + locator2.getProtocol());
registerMBean(server2, connector2, obj2);
@@ -180,13 +184,25 @@
NetworkNotification netNot = (NetworkNotification) notification;
if(NetworkNotification.SERVER_ADDED.equals(netNot.getType()))
{
- numOfAdded = netNot.getLocator().length;
+ numOfAdded = 0;
+ InvokerLocator[] locators = netNot.getLocator();
+ for (int i = 0; i < locators.length; i++)
+ {
+ if (locators[i].isSameEndpoint(locator1) || locators[i].isSameEndpoint(locator2))
+ numOfAdded++;
+ }
log.info("server added. num of locators added = " + numOfAdded);
}
else if(NetworkNotification.SERVER_UPDATED.equals(netNot.getType()))
{
- numOfUpdated = netNot.getLocator().length;
- log.info("server updated. num of locators in update = " + numOfAdded);
+ numOfUpdated = 0;
+ InvokerLocator[] locators = netNot.getLocator();
+ for (int i = 0; i < locators.length; i++)
+ {
+ if (locators[i].isSameEndpoint(locator1) || locators[i].isSameEndpoint(locator2))
+ numOfUpdated++;
+ }
+ log.info("server updated. num of locators in update = " + numOfUpdated);
}
ServerInvokerMetadata[] serverMetadata = netNot.getServerInvokers();
log.info(netNot.getIdentity());
16 years, 6 months
JBoss Remoting SVN: r4103 - remoting2/branches/2.x/lib/jboss.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-04-30 23:09:40 -0400 (Wed, 30 Apr 2008)
New Revision: 4103
Modified:
remoting2/branches/2.x/lib/jboss/README
Log:
JBREM-238: Added note about new jrunit.jar.
Modified: remoting2/branches/2.x/lib/jboss/README
===================================================================
--- remoting2/branches/2.x/lib/jboss/README 2008-05-01 03:08:40 UTC (rev 4102)
+++ remoting2/branches/2.x/lib/jboss/README 2008-05-01 03:09:40 UTC (rev 4103)
@@ -13,4 +13,6 @@
01/12/07: A new jrunit.jar has been committed, built from jrunit CVS version remoting_binary_011207.
-12/12/07: A new jrunit.jar has been committed.
\ No newline at end of file
+12/12/07: A new jrunit.jar has been committed.
+
+04/30/08: A new jrunit.jar has been committed, built from jrunit CVS version remoting_binary_043008.
\ No newline at end of file
16 years, 6 months
JBoss Remoting SVN: r4102 - remoting2/branches/2.x/lib/jboss.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-04-30 23:08:40 -0400 (Wed, 30 Apr 2008)
New Revision: 4102
Modified:
remoting2/branches/2.x/lib/jboss/jrunit.jar
Log:
JBREM-238: New jrunit with jrunit.logdir property.
Modified: remoting2/branches/2.x/lib/jboss/jrunit.jar
===================================================================
(Binary files differ)
16 years, 6 months
JBoss Remoting SVN: r4101 - remoting2/branches/2.x.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-04-30 23:00:46 -0400 (Wed, 30 Apr 2008)
New Revision: 4101
Modified:
remoting2/branches/2.x/build.xml
Log:
JBREM-238: Added jrunit.logdir property.
Modified: remoting2/branches/2.x/build.xml
===================================================================
--- remoting2/branches/2.x/build.xml 2008-05-01 02:34:43 UTC (rev 4100)
+++ remoting2/branches/2.x/build.xml 2008-05-01 03:00:46 UTC (rev 4101)
@@ -255,9 +255,11 @@
<!-- test properties -->
<property name="tests.src.dir" value="${tests.dir}"/>
<property name="tests.compile.dir" value="${output.dir}/tests/classes"/>
+ <property name="output.tests" value="${output.dir}/tests"/>
<property name="output.tests.classes" value="${output.dir}/tests/classes"/>
<property name="output.tests.results" value="${output.dir}/tests/results"/>
<property name="output.tests.performance" value="${output.dir}/tests/performance"/>
+ <property name="output.tests.stress" value="${output.dir}/tests/stress"/>
<property name="output.tests.tmp" value="${output.dir}/tests/tmp"/>
<property name="manifest.file" value="${output.etc.dir}/default.mf"/>
@@ -1051,6 +1053,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -1105,6 +1108,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -1167,6 +1171,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -1277,6 +1282,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -1324,6 +1330,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -1363,6 +1370,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -1416,6 +1424,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -1448,6 +1457,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<!-- this is needed for the remoting.marshall.dynamic.remote.MarshallerLoadingServer -->
<jvmarg value="-Dloader.path=${output.lib.dir}/jboss-remoting-loading-tests.jar"/>
<formatter type="xml"/>
@@ -1550,6 +1560,7 @@
<sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
<sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
<sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<!-- this is needed for the remoting.marshall.dynamic.remote.MarshallerLoadingServer -->
<jvmarg value="-Dloader.path=${output.lib.dir}/jboss-remoting-loading-tests.jar"/>
<formatter type="xml"/>
@@ -2048,6 +2059,7 @@
<sysproperty key="log4j.jar.dir" value="${basedir}/lib/apache-log4j/lib"/-->
<sysproperty key="log4j.config.dir" value="${basedir}/src/etc"/>
<sysproperty key="jboss-junit-configuration" value="${jboss-junit-configuration}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -2087,6 +2099,7 @@
<sysproperty key="log4j.jar.dir" value="${basedir}/lib/apache-log4j/lib"/>
<sysproperty key="log4j.config.dir" value="${basedir}/src/etc"/-->
<sysproperty key="jboss-junit-configuration" value="${jboss-junit-configuration}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -2127,6 +2140,7 @@
<sysproperty key="log4j.jar.dir" value="${basedir}/lib/apache-log4j/lib"/>
<sysproperty key="log4j.config.dir" value="${basedir}/src/etc"/-->
<sysproperty key="jboss-junit-configuration" value="${jboss-junit-configuration}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -2167,6 +2181,7 @@
<sysproperty key="remoting.jar.dir" value="${basedir}/output/lib"/>
<sysproperty key="log4j.jar.dir" value="${basedir}/lib/apache-log4j/lib"/>
<sysproperty key="log4j.config.dir" value="${basedir}/src/etc"/-->
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -2292,6 +2307,7 @@
<sysproperty key="log4j.jar.dir" value="${basedir}/lib/apache-log4j/lib"/>
<sysproperty key="log4j.config.dir" value="${basedir}/src/etc"/-->
<sysproperty key="jboss-junit-configuration" value="${jboss-junit-configuration}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
<batchtest fork="yes" todir="${output.tests.results}"
@@ -2964,6 +2980,7 @@
<sysproperty key="log4j.jar.dir" value="${basedir}/lib/apache-log4j/lib"/>
<sysproperty key="log4j.config.dir" value="${basedir}/src/etc"/>
<sysproperty key="ant.library.dir" value="${ant.library.dir}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests.performance}"/>
<formatter classname="org.jboss.ant.taskdefs.XMLJUnitMultipleResultFormatter"
extension="-${jboss-junit-configuration}.xml"/>
@@ -3377,7 +3394,7 @@
<param name="transport" value="http"/>
</antcall>
<antcall target="tests.stress.run" inheritrefs="true">
- <param name="transport" value="multiplex"/>
+ <param name="transport" value="bisocket"/>
</antcall>
</target>
@@ -3397,7 +3414,7 @@
<echo>Running stress tests for protocol: ${transport}, number of clients: ${numofclients}, payload size:
${payloadsize}, number of calls: ${numofcalls}</echo>
<!-- <mkdir dir="${output.tests.performance}/${transport}/${numofclients}/${numofcalls}/${payloadsize}"/>-->
- <mkdir dir="${output.tests.performance}"/>
+ <mkdir dir="${output.tests.stress}"/>
<mkdir dir="${output.tests.tmp}"/>
<echo>jboss-junit-configuration = ${jboss-junit-configuration}</echo>
<junit printsummary="true" fork="yes" includeantruntime="true" tempdir="${output.tests.tmp}">
@@ -3407,10 +3424,18 @@
<jvmarg value="-Dremoting.payload.size=${payloadsize}"/>
<jvmarg value="-Dremoting.serialization=${serialization}"/>
<!--<jvmarg value="-Djvm.mx=512"/>-->
- <jvmarg value="-Djrunit.result_timeout=900000"/>
- <jvmarg value="-Djrunit.tear_down_timeout=900000"/>
- <jvmarg value="-Djrunit.run_test_timeout=900000"/>
+ <jvmarg value="-Djrunit.result_timeout=1200000"/>
+ <jvmarg value="-Djrunit.tear_down_timeout=1200000"/>
+ <jvmarg value="-Djrunit.run_test_timeout=1200000"/>
<jvmarg value="-D${remoting.metadata.key}=${metadata}"/>
+ <sysproperty key="jrunit.bind_addr" value="${bind.address}"/>
+ <sysproperty key="jrunit.mcast_addr" value="${multicast.address}"/>
+ <sysproperty key="jrunit.mcast_port" value="${multicast.port}"/>
+ <sysproperty key="jrunit.receive_on_all_interfaces" value="${receiveOnAllInterfaces}"/>
+ <sysproperty key="jrunit.send_on_all_interfaces" value="${sendOnAllInterfaces}"/>
+ <sysproperty key="jrunit.send_interfaces" value="${sendInterfaces}"/>
+ <sysproperty key="jrunit.logdir" value="${output.tests.stress}"/>
+
<classpath>
<path refid="tests.classpath"/>
<pathelement location="${output.lib.dir}/jboss-remoting-tests.jar"/>
@@ -3529,6 +3554,7 @@
<target name="clean" depends="configure">
<delete dir="${output.dir}" quiet="true"/>
+ <delete dir="test_logs"/>
</target>
<target name="most" depends="clean,jars"/>
@@ -3555,15 +3581,6 @@
</fileset>
</move>
- <!-- calls the ant build for the multiplex doc -->
- <ant dir="docs/Multiplex"/>
-
- <move todir="docs">
- <fileset dir="docs/Multiplex/build/en/pdf">
- <include name="*.pdf"/>
- </fileset>
- </move>
-
</target>
<!-- ================================================================== -->
16 years, 6 months
JBoss Remoting SVN: r4100 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/jndi/startup.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-04-30 22:34:43 -0400 (Wed, 30 Apr 2008)
New Revision: 4100
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/jndi/startup/JNDIDetectorClient.java
Log:
JBREM-930: Returned to previous version.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/jndi/startup/JNDIDetectorClient.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/jndi/startup/JNDIDetectorClient.java 2008-05-01 00:20:19 UTC (rev 4099)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/detection/jndi/startup/JNDIDetectorClient.java 2008-05-01 02:34:43 UTC (rev 4100)
@@ -45,8 +45,7 @@
public void setUp() throws Exception
{
- String host = InetAddress.getLocalHost().getHostName();
- String detectorHost = System.getProperty("jrunit.bind_addr", host);
+ String detectorHost = InetAddress.getLocalHost().getHostName();
detector = new JNDIDetector();
detector.setCleanDetectionNumber(2);
16 years, 6 months
JBoss Remoting SVN: r4099 - remoting2/branches/2.x/src/tests/org/jboss/test/remoting/stream.
by jboss-remoting-commits@lists.jboss.org
Author: ron.sigal(a)jboss.com
Date: 2008-04-30 20:20:19 -0400 (Wed, 30 Apr 2008)
New Revision: 4099
Modified:
remoting2/branches/2.x/src/tests/org/jboss/test/remoting/stream/StreamingTestCase.java
Log:
JBREM-930: Extended timeout to 90000 ms.
Modified: remoting2/branches/2.x/src/tests/org/jboss/test/remoting/stream/StreamingTestCase.java
===================================================================
--- remoting2/branches/2.x/src/tests/org/jboss/test/remoting/stream/StreamingTestCase.java 2008-04-30 05:31:09 UTC (rev 4098)
+++ remoting2/branches/2.x/src/tests/org/jboss/test/remoting/stream/StreamingTestCase.java 2008-05-01 00:20:19 UTC (rev 4099)
@@ -35,4 +35,9 @@
1,
StreamingTestServer.class.getName());
}
+
+ protected long getResultsTimeout()
+ {
+ return 90000;
+ }
}
\ No newline at end of file
16 years, 6 months