aboutsummaryrefslogtreecommitdiff
path: root/tests/issues/run.bat
blob: f3e3daba96a5bad4dbd697a3a1fe5abc47c38034 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
@echo off

if not exist "build\" mkdir build
pushd build

set COMMON=-define:ODIN_TEST_FANCY=false -file -vet -strict-style

@echo on

..\..\..\odin test ..\test_issue_829.odin  %COMMON%   || exit /b
..\..\..\odin test ..\test_issue_1592.odin %COMMON%  || exit /b
..\..\..\odin test ..\test_issue_2056.odin %COMMON%  || exit /b
..\..\..\odin test ..\test_issue_2087.odin %COMMON%  || exit /b
..\..\..\odin build ..\test_issue_2113.odin %COMMON% -debug || exit /b
..\..\..\odin test ..\test_issue_2466.odin %COMMON%  || exit /b
..\..\..\odin test ..\test_issue_2615.odin %COMMON%  || exit /b
..\..\..\odin test ..\test_issue_2637.odin %COMMON%  || exit /b
..\..\..\odin test ..\test_issue_2666.odin %COMMON%  || exit /b

@echo off

popd
rmdir /S /Q build