summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2017-01-06 13:18:36 +0000
committeriphydf <iphydf@users.noreply.github.com>2017-01-07 22:59:25 +0000
commitbec03de2baf69d8dda67fab3f1d26e4e7c6c6378 (patch)
tree05bb319123137cbbc4c5fc3cc305ae131c0d4dcf
parent81d5c22502aaf5648fdad294765f06ea0e52dffd (diff)
Run windows tests but ignore their failures.
This way we can at least see what fails in which way.
-rw-r--r--other/travis/env-windows.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/other/travis/env-windows.sh b/other/travis/env-windows.sh
index 7ae6ea25..410948c1 100644
--- a/other/travis/env-windows.sh
+++ b/other/travis/env-windows.sh
@@ -4,7 +4,7 @@ CMAKE=$ARCH-w64-mingw32.shared-cmake
4CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON" 4CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON"
5NPROC=`nproc` 5NPROC=`nproc`
6CURDIR=/work 6CURDIR=/work
7RUN_TESTS=false 7RUN_TESTS=true
8 8
9RUN() { 9RUN() {
10 ./dockcross "$@" 10 ./dockcross "$@"
@@ -21,6 +21,7 @@ TESTS() {
21 # Run tests in docker. 21 # Run tests in docker.
22 ./dockcross "$@" || { 22 ./dockcross "$@" || {
23 cat _build/Testing/Temporary/LastTest.log 23 cat _build/Testing/Temporary/LastTest.log
24 false 24 # Ignore test failures on Windows builds for now.
25 #false
25 } 26 }
26} 27}