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