Skip to content

Commit

Permalink
ns
Browse files Browse the repository at this point in the history
  • Loading branch information
belaban committed Oct 3, 2024
1 parent e12fd7a commit afc385e
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -504,12 +504,43 @@
<antcall target="tcp"/>
<antcall target="tcp-nio"/>
<antcall target="stack-independent"/>
<antcall target="flush"/>
<antcall target="time-sensitive"/>
<antcall target="byteman"/>
</sequential>
</target>

<target name="all-tests-parallel" depends="delete-reports" description="Runs all tests">
<parallel>
<antcall target="functional"/>
<sequential>
<antcall target="udp"/>
</sequential>
<sequential>
<antcall target="tcp"/>
<antcall target="tcp-nio"/>
</sequential>
<sequential>
<antcall target="time-sensitive"/>
<antcall target="byteman"/>
</sequential>
<antcall target="stack-independent"/>
</parallel>
</target>

<target name="smoke-tests" depends="delete-reports" description="Runs all tests">
<parallel>
<antcall target="functional"/>
<sequential>
<antcall target="udp"/>
<antcall target="tcp"/>
<antcall target="stack-independent"/>
<antcall target="flush"/>
<antcall target="time-sensitive"/>
<antcall target="byteman"/>
</sequential>
</parallel>
</target>

<target name="functional" depends="postcompile,define-testng-task" description="Runs functional tests">
<mkdir dir="${tmp.dir}/test-results/xml/functional"/>
<runtest suitename="functional"
Expand Down

0 comments on commit afc385e

Please sign in to comment.