aboutsummaryrefslogtreecommitdiff
path: root/tests/core
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2021-09-07 20:24:02 +0200
committerJeroen van Rijn <Kelimion@users.noreply.github.com>2021-09-07 20:24:02 +0200
commitce2f926ff750edabc349dc32bb331abd246b99a1 (patch)
tree4678d6b26d699ac94fff88325f89c2afe4b93ec2 /tests/core
parentc0c7b4cbda818150dc05fcac874a7d22aa73eb39 (diff)
Separate math/big test.
Diffstat (limited to 'tests/core')
-rw-r--r--tests/core/build.bat16
-rw-r--r--tests/core/math/big/build.bat13
2 files changed, 14 insertions, 15 deletions
diff --git a/tests/core/build.bat b/tests/core/build.bat
index 23ee3abd4..6c0a42a29 100644
--- a/tests/core/build.bat
+++ b/tests/core/build.bat
@@ -18,18 +18,4 @@ echo ---
echo Running core:strings tests
echo ---
%PATH_TO_ODIN% test strings %COMMON%
-del strings.exe
-
-
-rem math/big tests
-set TEST_ARGS=-fast-tests
-set TEST_ARGS=
-set OUT_NAME=math_big_test_library
-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 math/big %COMMON% -o:speed -out:%OUT_NAME%
-python3 math/big/test.py %TEST_ARGS%
-del %OUT_NAME%.* \ No newline at end of file
+del strings.exe \ No newline at end of file
diff --git a/tests/core/math/big/build.bat b/tests/core/math/big/build.bat
new file mode 100644
index 000000000..d567cdeb7
--- /dev/null
+++ b/tests/core/math/big/build.bat
@@ -0,0 +1,13 @@
+@echo off
+rem math/big tests
+set PATH_TO_ODIN==..\..\..\..\odin
+set TEST_ARGS=-fast-tests
+set TEST_ARGS=
+set OUT_NAME=math_big_test_library
+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% \ No newline at end of file