1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="tcp-flush"
parallel="methods"
thread-count="5">
<parameter name="channel.conf" value="flush-tcp.xml"/>
<parameter name="use_blocking" value="true"/>
<test name="tcp-flush" junit="false" time-out="80000">
<groups>
<run>
<include name="base"/>
<include name="flush"/>
<exclude name="stack-independent"/>
<exclude name="stack-dependent"/>
<exclude name="broken"/>
<exclude name="known-failures"/>
</run>
</groups>
<packages>
<package name="org.jgroups.tests.*"/>
<package name="org.jgroups.blocks.*"/>
<package name="org.jgroups.protocols.*"/>
</packages>
</test>
</suite>
|