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-01 19:42:43 +0300
commit1e423d5d5b34f95e84ae3b465ab294625f338d56 (patch)
tree1479d610637f38b8f312e6615445c873c202586e /main/wintest.sh
parentc9661b4f8a543f47a8ba56e751cf5168fc5bc8c9 (diff)
[Build] Don't fail tests for windows if dll is not found.
Matches Mac and Linux behaviour from makefiles.
Diffstat (limited to 'main/wintest.sh')
-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