aboutsummaryrefslogtreecommitdiff
path: root/tests/core/Makefile
diff options
context:
space:
mode:
authorNoahR02 <noahreppert95@protonmail.com>2022-02-08 06:16:10 -0500
committerNoahR02 <noahreppert95@protonmail.com>2022-02-08 06:16:10 -0500
commit817bc7434dfd0ebfeb1310c22741b9d66af67ac2 (patch)
treecead2609cdffec63b731ae1ed9adf1143cfa6b6f /tests/core/Makefile
parent3c2ed3bb69df24ba162e5f2ea8f61ee3f7fd8e2f (diff)
Ports OpenSimplex2 from https://github.com/KdotJPG/OpenSimplex2 to Odin. Adds tests for the noise procedures.
Diffstat (limited to 'tests/core/Makefile')
-rw-r--r--tests/core/Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/tests/core/Makefile b/tests/core/Makefile
index 0f0ffe4d6..1c2cee6bd 100644
--- a/tests/core/Makefile
+++ b/tests/core/Makefile
@@ -1,7 +1,7 @@
ODIN=../../odin
PYTHON=$(shell which python3)
-all: download_test_assets image_test compress_test strings_test hash_test crypto_test
+all: download_test_assets image_test compress_test strings_test hash_test crypto_test noise_test
download_test_assets:
$(PYTHON) download_assets.py
@@ -19,4 +19,7 @@ hash_test:
$(ODIN) run hash -out=test_hash -o:speed -no-bounds-check
crypto_test:
- $(ODIN) run crypto -out=crypto_hash -o:speed -no-bounds-check \ No newline at end of file
+ $(ODIN) run crypto -out=crypto_hash -o:speed -no-bounds-check
+
+noise_test:
+ $(ODIN) run math/noise -out=test_noise \ No newline at end of file