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:
authorMarius Ungureanu <marius.ungureanu@xamarin.com>2015-05-01 19:42:43 +0300
committerMarius Ungureanu <marius.ungureanu@xamarin.com>2015-05-03 21:52:53 +0300
commit7f6d15d8f721292ffd837f2df6b3eb050baa2603 (patch)
treeef507a24e0cba88d7152fd0a8e0de549146b98a7
parent84bacb5e3f9be4e7b5743c7e58a22cc58007fa5f (diff)
[Build] Don't fail tests for windows if dll is not found.
Matches Mac and Linux behaviour from makefiles.
-rw-r--r--main/wintest.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/main/wintest.sh b/main/wintest.sh
index 2c03f8acd1..48d9c5b78a 100644
--- a/main/wintest.sh
+++ b/main/wintest.sh
@@ -10,6 +10,8 @@ else
arg="build/tests/$arg"
fi
- (build/bin/mdtool run-md-tests $arg) || exit $?
+ if [ -f $arg ]; then
+ (build/bin/mdtool run-md-tests $arg) || exit $?
+ fi
done
fi