blob: 2ecd14d957ccdce2ed6b5d875436da27df2502eb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
@echo off
if not exist "build\" mkdir build
set COMMON=-collection:tests=..
@echo on
..\..\odin test test_issue_829.odin %COMMON% -file
..\..\odin test test_issue_1592.odin %COMMON% -file
..\..\odin test test_issue_2087.odin %COMMON% -file
@echo off
rmdir /S /Q build
|