aboutsummaryrefslogtreecommitdiff
path: root/build.sh
diff options
context:
space:
mode:
authorDanielGavin <danielgavin5@hotmail.com>2024-10-03 21:30:40 +0200
committerDanielGavin <danielgavin5@hotmail.com>2024-10-03 21:30:40 +0200
commitafe0c725e0bd3a0b79adddf3c997391a5088ab35 (patch)
tree98e6573746639cbe4edbad3364bb58931457e0e0 /build.sh
parent4b8678b8f6b54e3c8dbbbd943228e6b9c919f330 (diff)
Fix issues with call expression inside another generic call expression.
Diffstat (limited to 'build.sh')
-rwxr-xr-xbuild.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build.sh b/build.sh
index a354db5..f887e8d 100755
--- a/build.sh
+++ b/build.sh
@@ -8,7 +8,7 @@ then
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
- odin test ../tests -collection:src=../src -test-name:$@ -define:ODIN_TEST_THREADS=1
+ odin test ../tests -collection:src=../src -test-name:$@ -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
shift
@@ -28,7 +28,7 @@ then
#BUG in odin test, it makes the executable with the same name as a folder and gets confused.
cd tests
- odin test ../tests -collection:src=../src $@ -define:ODIN_TEST_THREADS=1
+ odin test ../tests -collection:src=../src $@ -define:ODIN_TEST_THREADS=1 -define:ODIN_TEST_TRACK_MEMORY=false
if ([ $? -ne 0 ])
then