Merge pull request #2436 from Lperlind/batch-fail

Make tests scripts error if a test fails
This commit is contained in:
Jeroen van Rijn
2023-04-03 08:56:43 +02:00
committed by GitHub
7 changed files with 38 additions and 38 deletions
+3 -2
View File
@@ -4,9 +4,10 @@ set PATH_TO_ODIN==..\..\odin
echo ---
echo Building Documentation File
echo ---
%PATH_TO_ODIN% doc ..\..\examples\all -all-packages -doc-format
%PATH_TO_ODIN% doc ..\..\examples\all -all-packages -doc-format || exit /b
echo ---
echo Running Documentation Tester
echo ---
%PATH_TO_ODIN% run documentation_tester.odin -file -vet -strict-style -- %PATH_TO_ODIN%
%PATH_TO_ODIN% run documentation_tester.odin -file -vet -strict-style -- %PATH_TO_ODIN% || exit /b