aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.nant
diff options
context:
space:
mode:
authorJustin Clark-Casey (justincc)2012-08-29 23:19:21 +0100
committerJustin Clark-Casey (justincc)2012-08-29 23:19:21 +0100
commitadce58b33a39c9456468f6d25834a8a7bded5adf (patch)
tree1594f527c86722454829c9a3367e40e19800f2d7 /.nant
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-adce58b33a39c9456468f6d25834a8a7bded5adf.zip
opensim-SC_OLD-adce58b33a39c9456468f6d25834a8a7bded5adf.tar.gz
opensim-SC_OLD-adce58b33a39c9456468f6d25834a8a7bded5adf.tar.bz2
opensim-SC_OLD-adce58b33a39c9456468f6d25834a8a7bded5adf.tar.xz
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
Diffstat (limited to '.nant')
-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