mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-26 15:34:59 -07:00
16 lines
478 B
Batchfile
16 lines
478 B
Batchfile
@echo off
|
|
rem math/big tests
|
|
set PATH_TO_ODIN==..\..\..\..\odin
|
|
set TEST_ARGS=-fast-tests
|
|
set TEST_ARGS=-no-random
|
|
set TEST_ARGS=
|
|
set OUT_NAME=math_big_test_library.dll
|
|
set COMMON=-build-mode:shared -show-timings -no-bounds-check -define:MATH_BIG_EXE=false -vet -strict-style
|
|
echo ---
|
|
echo Running core:math/big tests
|
|
echo ---
|
|
|
|
%PATH_TO_ODIN% build . %COMMON% -o:speed -out:%OUT_NAME%
|
|
python3 test.py %TEST_ARGS%
|
|
|
|
%PATH_TO_ODIN% test test_core_math_big.odin -file |