Make tests scripts error if a test fails

Additionally fixes tests that were found broken because
of this.
This commit is contained in:
Lucas Perlind
2023-04-03 16:49:14 +10:00
parent 22e0f5ecd0
commit c59ad24856
7 changed files with 38 additions and 38 deletions
+2 -2
View File
@@ -5,9 +5,9 @@ set PATH_TO_ODIN==..\..\odin
echo ---
echo Running vendor:botan tests
echo ---
%PATH_TO_ODIN% run botan %COMMON% -out:vendor_botan.exe
%PATH_TO_ODIN% run botan %COMMON% -out:vendor_botan.exe || exit /b
echo ---
echo Running vendor:glfw tests
echo ---
%PATH_TO_ODIN% run glfw %COMMON% -out:vendor_glfw.exe
%PATH_TO_ODIN% run glfw %COMMON% -out:vendor_glfw.exe || exit /b