From a7b8897846eae59718747be3b003d975cac4a519 Mon Sep 17 00:00:00 2001 From: Maarten Bent Date: Sun, 29 Jul 2018 19:08:17 +0200 Subject: [PATCH] Fix running CMake tests under AppVeyor --- build/tools/appveyor-test.bat | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/build/tools/appveyor-test.bat b/build/tools/appveyor-test.bat index 9de61f8488..6a26e19fed 100755 --- a/build/tools/appveyor-test.bat +++ b/build/tools/appveyor-test.bat @@ -44,9 +44,10 @@ exit /b 0 :cmake if "%CONFIGURATION%"=="" set CONFIGURATION=Release -cd build_cmake -ctest -V -C %CONFIGURATION% --interactive-debug-mode 0 . -if errorlevel 1 goto error +cd ..\build_cmake +ctest -V -C %CONFIGURATION% -R "test_[base|gui]" --interactive-debug-mode 0 . +if errorlevel 1 goto :error +goto :eof :error echo.