File: testng-tcp.xml

package info (click to toggle)
libjgroups-java 2.12.2.Final-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 8,712 kB
  • sloc: java: 109,098; xml: 9,423; sh: 149; makefile: 2
file content (27 lines) | stat: -rw-r--r-- 846 bytes parent folder | download | duplicates (4)
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
27
<!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
<suite name="tcp"
       parallel="methods"
       thread-count="5"
        >

    <test name="tcp" junit="false" time-out="80000">
        <parameter name="channel.conf" value="tcp.xml"/>
        <groups>
            <run>
            	<include name="base"/>       
            	<include name="stack-dependent"/>
            	<exclude name="stack-independent"/>
                <exclude name="broken"/>
                <exclude name="known-failures"/>
                <exclude name="flush"/>
                <exclude name="stress"/>
            </run>
        </groups>
        <packages>
            <package name="org.jgroups.tests.*"/>
            <package name="org.jgroups.blocks.*"/>
            <package name="org.jgroups.protocols.*"/>
        </packages>
    </test>

</suite>