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:14:33 +0400
committerTherzok <teromario@yahoo.com>2013-10-24 19:14:48 +0400
commitabd09cce5668f915ef874d8ad4488f6bdf2417af (patch)
tree4ccf18ef89552e898bac9eda229fd3a01bd24b79 /main/wintest.sh
parentc9f728a4c475bdbeb76efa854fa437abb9223f47 (diff)
[wintest.sh] Append /build/tests/ to the assembly name if it isn't there.
Diffstat (limited to 'main/wintest.sh')
-rw-r--r--main/wintest.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/main/wintest.sh b/main/wintest.sh
index 208ec11ec9..097dbd5960 100644
--- a/main/wintest.sh
+++ b/main/wintest.sh
@@ -3,6 +3,9 @@ if [ $# -lt 1 ]; then
build/bin/mdtool run-md-tests build/tests/*.Tests.dll
else
for arg in $@; do
+ if [[ $arg != build/tests/* ]]; then
+ arg="build/tests/$arg"
+ fi
build/bin/mdtool run-md-tests $arg
done
fi