adds unit test ability for TeamCity running mono

git-svn-id: http://libopenmetaverse.googlecode.com/svn/libopenmetaverse/trunk@2663 52acb1d6-8a22-11de-b505-999d5b087335
This commit is contained in:
Jim Radford
2009-04-26 01:08:59 +00:00
parent 1efcfbeb6e
commit 230f84dee0

View File

@@ -8,6 +8,10 @@ if [ x$1 == xnant ]; then
nant -buildfile:OpenMetaverse.build
RES=$?
echo Build Exit Code: $RES
if [ x$2 == xruntests ]; then
nunit-console2 bin/OpenMetaverse.Tests.dll /exclude=Network /labels /xml=testresults.xml
fi
exit $RES
fi