big: Move tests into their own package.

This commit is contained in:
Jeroen van Rijn
2021-09-07 12:06:58 +02:00
parent 48bfce2efc
commit 008048e199
5 changed files with 401 additions and 403 deletions
+8
View File
@@ -0,0 +1,8 @@
@echo off
set TEST_ARGS=-fast-tests
set TEST_ARGS=
set OUT_NAME=test_library
set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style
:odin build . %COMMON% -o:minimal -out:%OUT_NAME% && python test.py %TEST_ARGS%
odin build . %COMMON% -o:size -out:%OUT_NAME% && python test.py %TEST_ARGS%
:odin build . %COMMON% -o:speed -out:%OUT_NAME% && python test.py %TEST_ARGS%