aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant/local.include
diff options
context:
space:
mode:
Diffstat (limited to '.nant/local.include')
-rw-r--r--.nant/local.include8
1 files changed, 4 insertions, 4 deletions
diff --git a/.nant/local.include b/.nant/local.include
index 181c875..35f0058 100644
--- a/.nant/local.include
+++ b/.nant/local.include
@@ -146,14 +146,14 @@
146 <delete dir="%temp%"/> 146 <delete dir="%temp%"/>
147</target> 147</target>
148 148
149<target name="torture" depends="build, find-nunit"> 149<target name="test-perf" depends="build, find-nunit">
150 <setenv name="MONO_THREADS_PER_CPU" value="100" /> 150 <setenv name="MONO_THREADS_PER_CPU" value="100" />
151 151
152 <exec program="${nunitcmd}" failonerror="true" resultproperty="testresult.opensim.tests.torture"> 152 <exec program="${nunitcmd}" failonerror="true" resultproperty="testresult.opensim.tests.performance">
153 <arg value="./bin/OpenSim.Tests.Torture.dll" /> 153 <arg value="./bin/OpenSim.Tests.Performance.dll" />
154 </exec> 154 </exec>
155 155
156 <fail message="Failures reported in torture tests." unless="${int::parse(testresult.opensim.tests.torture)==0}" /> 156 <fail message="Failures reported in performance tests." unless="${int::parse(testresult.opensim.tests.performance)==0}" />
157 <delete dir="%temp%"/> 157 <delete dir="%temp%"/>
158</target> 158</target>
159 159