diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-11-13 16:32:24 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-11-13 16:32:24 +0100 |
| commit | 9b88a38e54818daf6fda4e2dda4ab4aa6c6dbd5d (patch) | |
| tree | 8019ee70ba3d4470e2411f6d7d76d7c33800d5b7 /tests | |
| parent | 16a494347c82ea22686146b5e932d6683d761751 (diff) | |
map tests for Linux and Mac
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/internal/Makefile | 6 | ||||
| -rw-r--r-- | tests/internal/build.bat | 3 |
2 files changed, 8 insertions, 1 deletions
diff --git a/tests/internal/Makefile b/tests/internal/Makefile new file mode 100644 index 000000000..7328968f0 --- /dev/null +++ b/tests/internal/Makefile @@ -0,0 +1,6 @@ +ODIN=../../odin
+
+all: map_test
+
+map_test:
+ $(ODIN) run test_map.odin -file -vet -strict-style -o:minimal
\ No newline at end of file diff --git a/tests/internal/build.bat b/tests/internal/build.bat index d747ebfef..313e1dbb5 100644 --- a/tests/internal/build.bat +++ b/tests/internal/build.bat @@ -1,3 +1,4 @@ @echo off
set PATH_TO_ODIN==..\..\odin
-%PATH_TO_ODIN% run test_map.odin -file -vet -strict-style -o:minimal -define:SEED=42
\ No newline at end of file +%PATH_TO_ODIN% run test_map.odin -file -vet -strict-style -o:minimal
+rem -define:SEED=42
\ No newline at end of file |