mirror of
https://github.com/odin-lang/Odin.git
synced 2026-01-02 11:12:31 +00:00
Inits `o->value` in `check_expr_base_internal()` so doesn't accidentally use last (the proc lit was being set to that of previous string) Adds test to "tests/issues" and changes CI to use new "run" shells
18 lines
368 B
Batchfile
18 lines
368 B
Batchfile
@echo off
|
|
|
|
if not exist "tests\issues\build\" mkdir tests\issues\build
|
|
|
|
set COMMON=-collection:tests=tests -out:tests\issues\build\test_issue
|
|
|
|
@echo on
|
|
|
|
.\odin build tests\issues\test_issue_829.odin %COMMON%
|
|
tests\issues\build\test_issue
|
|
|
|
.\odin build tests\issues\test_issue_1592.odin %COMMON%
|
|
tests\issues\build\test_issue
|
|
|
|
@echo off
|
|
|
|
rmdir /S /Q tests\issues\build
|