diff options
author | Mike Mazur | 2008-07-24 05:23:38 +0000 |
---|---|---|
committer | Mike Mazur | 2008-07-24 05:23:38 +0000 |
commit | 117cc09edcc796f93cb05f98d7589b7ca5313ee8 (patch) | |
tree | f4023623fd833dd9e681e4b9556a099a773fc2fb /.nant/bamboo.build | |
parent | Addresses Mantis #1810 (diff) | |
download | opensim-SC_OLD-117cc09edcc796f93cb05f98d7589b7ca5313ee8.zip opensim-SC_OLD-117cc09edcc796f93cb05f98d7589b7ca5313ee8.tar.gz opensim-SC_OLD-117cc09edcc796f93cb05f98d7589b7ca5313ee8.tar.bz2 opensim-SC_OLD-117cc09edcc796f93cb05f98d7589b7ca5313ee8.tar.xz |
Replace implicit casts from LSLFloat to int and uint which were removed in
r5487.
Also put the unit tests back for Bamboo to execute them, let's see how this
goes.
Diffstat (limited to '.nant/bamboo.build')
-rw-r--r-- | .nant/bamboo.build | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/.nant/bamboo.build b/.nant/bamboo.build index 5577dd9..93e9ad7 100644 --- a/.nant/bamboo.build +++ b/.nant/bamboo.build | |||
@@ -21,7 +21,19 @@ | |||
21 | 21 | ||
22 | <touch file="../${projectdir}/bin/startup_commands.txt" /> | 22 | <touch file="../${projectdir}/bin/startup_commands.txt" /> |
23 | 23 | ||
24 | <delete dir="../test-results" /> | ||
24 | <mkdir dir="../test-results" /> | 25 | <mkdir dir="../test-results" /> |
26 | <nunit2> | ||
27 | <formatter type="Xml" usefile="true" extension=".xml" outputdir="../test-results" /> | ||
28 | <test> | ||
29 | <assemblies> | ||
30 | <include name="../bin/OpenSim.Framework.Tests.dll" /> | ||
31 | <include name="../bin/OpenSim.Region.ScriptEngine.Common.Tests.dll" /> | ||
32 | <include name="../bin/OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests.dll" /> | ||
33 | <include name="../bin/OpenSim.Region.Environment.dll" /> | ||
34 | </assemblies> | ||
35 | </test> | ||
36 | </nunit2> | ||
25 | 37 | ||
26 | <zip zipfile="../${projectdir}.zip"> | 38 | <zip zipfile="../${projectdir}.zip"> |
27 | <fileset basedir="${projectdir}/"> | 39 | <fileset basedir="${projectdir}/"> |