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:
authorLluis Sanchez <slluis.devel@gmail.com>2015-05-18 15:19:32 +0300
committerLluis Sanchez <slluis.devel@gmail.com>2015-05-18 15:19:32 +0300
commit43735a4b905b571f69cf9428a3ea7b52aef55476 (patch)
tree25da0bcd329c2afd6032fc96e665f6c5c1234cc9
parentf97f3598952edca4678fc9fdafffecb68ed24399 (diff)
parent7f6d15d8f721292ffd837f2df6b3eb050baa2603 (diff)
Merge pull request #900 from mono/5.9-orange-buildsmonodevelop-5.9.2.2
[Build] Don't fail tests for windows if dll is not found.
-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