Renaming existing 'torture' tests to 'performance' tests instead, since this better matches what they really do.

nant target name changes to test-perf instead of torture, to match test-stress
still not run by default
This commit is contained in:
Justin Clark-Casey (justincc)
2012-08-29 23:19:21 +01:00
parent 1f88179a65
commit adce58b33a
5 changed files with 14 additions and 14 deletions

View File

@@ -146,14 +146,14 @@
<delete dir="%temp%"/>
</target>
<target name="torture" depends="build, find-nunit">
<target name="test-perf" depends="build, find-nunit">
<setenv name="MONO_THREADS_PER_CPU" value="100" />
<exec program="${nunitcmd}" failonerror="true" resultproperty="testresult.opensim.tests.torture">
<arg value="./bin/OpenSim.Tests.Torture.dll" />
<exec program="${nunitcmd}" failonerror="true" resultproperty="testresult.opensim.tests.performance">
<arg value="./bin/OpenSim.Tests.Performance.dll" />
</exec>
<fail message="Failures reported in torture tests." unless="${int::parse(testresult.opensim.tests.torture)==0}" />
<fail message="Failures reported in performance tests." unless="${int::parse(testresult.opensim.tests.performance)==0}" />
<delete dir="%temp%"/>
</target>