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

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2018-09-28 12:35:56 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2018-09-28 12:35:56 +0300
commit5efd509300960e082bbf1478d1c0dbae74f2ab3c (patch)
tree27d57aa4f0326ed8fd32668ef5e53a4128b60fe0 /scripts/ci
parentf091139c56c68a1eebca0e68866a4bce2dc4defa (diff)
Don't run WebMatrix.Data tests on Windows
We don't have the sqlite3 library there.
Diffstat (limited to 'scripts/ci')
-rwxr-xr-xscripts/ci/run-test-default.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/ci/run-test-default.sh b/scripts/ci/run-test-default.sh
index e77e79ea246..d60f438d87b 100755
--- a/scripts/ci/run-test-default.sh
+++ b/scripts/ci/run-test-default.sh
@@ -89,7 +89,7 @@ ${TESTCMD} --label=Mono.CodeContracts --timeout=5m make -w -C mcs/class/Mono.Cod
${TESTCMD} --label=System.Runtime.Caching --timeout=5m make -w -C mcs/class/System.Runtime.Caching run-test
${TESTCMD} --label=System.Data.Services --timeout=5m make -w -C mcs/class/System.Data.Services run-test
${TESTCMD} --label=System.Web.DynamicData --timeout=5m make -w -C mcs/class/System.Web.DynamicData run-test
-${TESTCMD} --label=WebMatrix.Data --timeout=5m make -w -C mcs/class/WebMatrix.Data run-test
+if [[ ${CI_TAGS} == *'win-'* ]]; then ${TESTCMD} --label=WebMatrix.Data --skip; else ${TESTCMD} --label=WebMatrix.Data --timeout=5m make -w -C mcs/class/WebMatrix.Data run-test; fi
${TESTCMD} --label=Mono.CSharp --timeout=5m make -w -C mcs/class/Mono.CSharp run-test
${TESTCMD} --label=WindowsBase --timeout=5m make -w -C mcs/class/WindowsBase run-test
${TESTCMD} --label=System.Numerics --timeout=5m make -w -C mcs/class/System.Numerics run-test