diff options
-rwxr-xr-x | BuildIt.sh | 1 | ||||
-rwxr-xr-x | TestIt.sh | 2 |
2 files changed, 3 insertions, 0 deletions
@@ -25,4 +25,5 @@ if [ "4" == $(mono -V | head -n 1 | cut -d ' ' -f 5 | cut -d '.' -f 1) ]; then | |||
25 | else | 25 | else |
26 | # Use this for Mono 5 and later. | 26 | # Use this for Mono 5 and later. |
27 | msbuild /p:Configuration=Release | 27 | msbuild /p:Configuration=Release |
28 | # msbuild /p:Configuration=Debug | ||
28 | fi | 29 | fi |
@@ -2,6 +2,8 @@ | |||
2 | 2 | ||
3 | export MONO_THREADS_PER_CPU=100 | 3 | export MONO_THREADS_PER_CPU=100 |
4 | 4 | ||
5 | # For printing out line numbers use "exec /usr/bin/cli --debug /usr/lib/nunit/nunit-console.exe" instead of "nunit-console". | ||
6 | |||
5 | echo "Standard tests." | 7 | echo "Standard tests." |
6 | mkdir -p ../db | 8 | mkdir -p ../db |
7 | nunit-console bin/OpenSim.Tests.dll bin/OpenSim.Framework.Tests.dll bin/OpenSim.Framework.Servers.Tests.dll bin/OpenSim.Framework.Serialization.Tests.dll bin/OpenSim.Region.ClientStack.LindenCaps.Tests.dll bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll bin/OpenSim.Region.ScriptEngine.Tests.dll bin/OpenSim.Region.CoreModules.Tests.dll bin/OpenSim.Region.Framework.Tests.dll -nologo -output=TestOutput.txt -err=TestError.txt -labels -noxml | 9 | nunit-console bin/OpenSim.Tests.dll bin/OpenSim.Framework.Tests.dll bin/OpenSim.Framework.Servers.Tests.dll bin/OpenSim.Framework.Serialization.Tests.dll bin/OpenSim.Region.ClientStack.LindenCaps.Tests.dll bin/OpenSim.Region.ClientStack.LindenUDP.Tests.dll bin/OpenSim.Region.ScriptEngine.Tests.dll bin/OpenSim.Region.CoreModules.Tests.dll bin/OpenSim.Region.Framework.Tests.dll -nologo -output=TestOutput.txt -err=TestError.txt -labels -noxml |