diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-05-29 17:16:24 +0200 |
|---|---|---|
| committer | Feoramund <161657516+Feoramund@users.noreply.github.com> | 2024-06-02 14:34:31 -0400 |
| commit | eb3d6d7d75cf8b2de1bfddf03820ee60ce595b05 (patch) | |
| tree | fa71ae400415f928427926f6d363cd187ae2e81f /tests/core/Makefile | |
| parent | 852f694bee4469c009cb02a850e02fe1c7165477 (diff) | |
Update `core:image` tests to use new runner.
Diffstat (limited to 'tests/core/Makefile')
| -rw-r--r-- | tests/core/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/core/Makefile b/tests/core/Makefile index 9026ed3d9..a740b3d7c 100644 --- a/tests/core/Makefile +++ b/tests/core/Makefile @@ -1,6 +1,6 @@ ODIN=../../odin PYTHON=$(shell which python3) -COMMON=-vet -strict-style +COMMON=-no-bounds-check -vet -strict-style -define:test_track_memory=true COLLECTION=-collection:tests=.. all: all_bsd \ @@ -34,7 +34,7 @@ download_test_assets: $(PYTHON) download_assets.py image_test: - $(ODIN) run image $(COMMON) -out:test_core_image + $(ODIN) test image $(COMMON) -define:test_progress_width=12 -out:test_core_image compress_test: $(ODIN) run compress $(COMMON) -out:test_core_compress |