Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTherzok <teromario@yahoo.com>2013-10-24 19:30:56 +0400
committerTherzok <teromario@yahoo.com>2013-10-24 19:30:56 +0400
commit1dae2e7467f01ea8272758313eae3dd088e86f21 (patch)
tree56335db1c4f6f43004a09b8a483f804b5ed6a045 /main/wintest.sh
parentabd09cce5668f915ef874d8ad4488f6bdf2417af (diff)
[WinTest.sh] Fix this file more.
Diffstat (limited to 'main/wintest.sh')
-rw-r--r--main/wintest.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/main/wintest.sh b/main/wintest.sh
index 097dbd5960..d4b8be9fd2 100644
--- a/main/wintest.sh
+++ b/main/wintest.sh
@@ -1,11 +1,15 @@
if [ $# -lt 1 ]; then
build/bin/mdtool run-md-tests build/tests/UnitTests.dll
build/bin/mdtool run-md-tests build/tests/*.Tests.dll
+ build/bin/mdtool run-md-tests external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll
else
for arg in $@; do
- if [[ $arg != build/tests/* ]]; then
+ if [[ $arg == "ICSharpCode.NRefactory.Tests.dll" ]]; then
+ arg="external/nrefactory/bin/Debug/ICSharpCode.NRefactory.Tests.dll"
+ elif [[ $arg != build/tests/* ]]; then
arg="build/tests/$arg"
fi
- build/bin/mdtool run-md-tests $arg
+
+ (build/bin/mdtool run-md-tests $arg) || exit $?
done
fi