diff options
-rw-r--r-- | .nant/bamboo.build | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.nant/bamboo.build b/.nant/bamboo.build index 6c2c8e6..a4eb4ba 100644 --- a/.nant/bamboo.build +++ b/.nant/bamboo.build | |||
@@ -21,8 +21,13 @@ | |||
21 | 21 | ||
22 | <touch file="../${projectdir}/bin/startup_commands.txt" /> | 22 | <touch file="../${projectdir}/bin/startup_commands.txt" /> |
23 | 23 | ||
24 | <!-- Re-create the directory containig test results. --> | ||
24 | <delete dir="../test-results" /> | 25 | <delete dir="../test-results" /> |
25 | <mkdir dir="../test-results" /> | 26 | <mkdir dir="../test-results" /> |
27 | <!-- Copy the OdePlugin dll to bin/ for testing. --> | ||
28 | <copy file="../bin/Physics/OpenSim.Region.Physics.OdePlugin.dll" tofile="../bin/OpenSim.Region.Physics.OdePlugin.dll" /> | ||
29 | |||
30 | <!-- Run the tests. --> | ||
26 | <nunit2 failonerror="false"> | 31 | <nunit2 failonerror="false"> |
27 | <formatter type="Xml" usefile="true" extension=".xml" outputdir="../test-results" /> | 32 | <formatter type="Xml" usefile="true" extension=".xml" outputdir="../test-results" /> |
28 | <test> | 33 | <test> |
@@ -31,6 +36,7 @@ | |||
31 | <include name="../bin/OpenSim.Region.ScriptEngine.Common.Tests.dll" /> | 36 | <include name="../bin/OpenSim.Region.ScriptEngine.Common.Tests.dll" /> |
32 | <include name="../bin/OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests.dll" /> | 37 | <include name="../bin/OpenSim.Region.ScriptEngine.Shared.CodeTools.Tests.dll" /> |
33 | <include name="../bin/OpenSim.Region.Environment.dll" /> | 38 | <include name="../bin/OpenSim.Region.Environment.dll" /> |
39 | <include name="../bin/OpenSim.Region.Physics.OdePlugin.dll" /> | ||
34 | </assemblies> | 40 | </assemblies> |
35 | </test> | 41 | </test> |
36 | </nunit2> | 42 | </nunit2> |