From 4ba732c88660a7eb7fb6aeac1048197e5fb662a7 Mon Sep 17 00:00:00 2001 From: Patrick Niklaus Date: Mon, 4 Jan 2016 11:15:37 +0100 Subject: [PATCH] Fix AppVayor tests --- appveyor-build.bat | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/appveyor-build.bat b/appveyor-build.bat index a1e96031c..f055c171e 100644 --- a/appveyor-build.bat +++ b/appveyor-build.bat @@ -81,11 +81,14 @@ IF %ERRORLEVEL% NEQ 0 GOTO ERROR SET PATH=%PROJECT_DIR%\osrm-deps\libs\bin;%PATH% -ECHO running datastructure-tests.exe ... -%Configuration%\datastructure-tests.exe +ECHO running engine-tests.exe ... +%Configuration%\engine-tests.exe IF %ERRORLEVEL% NEQ 0 GOTO ERROR -ECHO running algorithm-tests.exe ... -%Configuration%\algorithm-tests.exe +ECHO running extractor-tests.exe ... +%Configuration%\extractor-tests.exe +IF %ERRORLEVEL% NEQ 0 GOTO ERROR +ECHO running util-tests.exe ... +%Configuration%\util-tests.exe IF %ERRORLEVEL% NEQ 0 GOTO ERROR IF NOT "%APPVEYOR_REPO_BRANCH%"=="develop" GOTO DONE