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 13:38:36 +10:00
parent 22e0f5ecd0
commit c59ad24856
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