run.bat 767 B

1234567891011121314151617181920212223
  1. @echo off
  2. if not exist "build\" mkdir build
  3. pushd build
  4. set COMMON=-collection:tests=..\..
  5. @echo on
  6. ..\..\..\odin test ..\test_issue_829.odin %COMMON% -file || exit /b
  7. ..\..\..\odin test ..\test_issue_1592.odin %COMMON% -file || exit /b
  8. ..\..\..\odin test ..\test_issue_2056.odin %COMMON% -file || exit /b
  9. ..\..\..\odin test ..\test_issue_2087.odin %COMMON% -file || exit /b
  10. ..\..\..\odin build ..\test_issue_2113.odin %COMMON% -file -debug || exit /b
  11. ..\..\..\odin test ..\test_issue_2466.odin %COMMON% -file || exit /b
  12. ..\..\..\odin test ..\test_issue_2615.odin %COMMON% -file || exit /b
  13. ..\..\..\odin test ..\test_issue_2637.odin %COMMON% -file || exit /b
  14. ..\..\..\odin test ..\test_issue_2666.odin %COMMON% -file || exit /b
  15. @echo off
  16. popd
  17. rmdir /S /Q build