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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Nattress <nattress@gmail.com>2017-02-25 06:02:18 +0300
committerGitHub <noreply@github.com>2017-02-25 06:02:18 +0300
commit573a673b049e896a009b0d1e2f5604618d5f8508 (patch)
tree2d17be99e86b837794d59e9ee08bb268acdc8587 /buildscripts/build-tests.sh
parent319b7a96388e05d9d907804bca4c32b51172ac8c (diff)
Linux support for multi-module (#2807)
* Linux support for multi-module * Alter build integration scripts to support different naming / tool invocations on Linux. * Add GC / frame info for ELF to the same group as its associated method so it gets Comdat folded properly. * Add -multimodule switch to runtest.sh to run tests against a shared pre-compiled framework library. * Update ObjectWriter Nuget package which brings changes need to support Elf Comdat sections.
Diffstat (limited to 'buildscripts/build-tests.sh')
-rwxr-xr-xbuildscripts/build-tests.sh4
1 files changed, 4 insertions, 0 deletions
diff --git a/buildscripts/build-tests.sh b/buildscripts/build-tests.sh
index 2127f3f1a..4c1b55234 100755
--- a/buildscripts/build-tests.sh
+++ b/buildscripts/build-tests.sh
@@ -2,6 +2,10 @@
scriptRoot="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
+if [ "$__SkipTests" == "true" ]; then
+ exit 0
+fi
+
if [ "$BUILDVARS_DONE" != 1 ]; then
. $scriptRoot/buildvars-setup.sh $*
fi