Run windows tests but ignore their failures.

This way we can at least see what fails in which way.
This commit is contained in:
iphydf
2017-01-06 13:18:36 +00:00
parent 81d5c22502
commit bec03de2ba
+3 -2
View File
@@ -4,7 +4,7 @@ CMAKE=$ARCH-w64-mingw32.shared-cmake
CMAKE_EXTRA_FLAGS="$CMAKE_EXTRA_FLAGS -DBOOTSTRAP_DAEMON=OFF -DCOMPILE_AS_CXX=ON"
NPROC=`nproc`
CURDIR=/work
RUN_TESTS=false
RUN_TESTS=true
RUN() {
./dockcross "$@"
@@ -21,6 +21,7 @@ TESTS() {
# Run tests in docker.
./dockcross "$@" || {
cat _build/Testing/Temporary/LastTest.log
false
# Ignore test failures on Windows builds for now.
#false
}
}