diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2021-09-09 16:12:29 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-09-09 16:12:29 +0200 |
| commit | fc66ce9dd64176d00a4e22c83383f9c0fa0db8ce (patch) | |
| tree | 53dba89129bca7771719f90eb91da9320f255e10 /tests/core/Makefile | |
| parent | e65e0b5db2ab9880d278555798194b875025899a (diff) | |
| parent | f04614b1f1b6a562a17925f0ad146c8b1e45daf0 (diff) | |
Merge pull request #1149 from Kelimion/xxhash
Add `xxhash` 32-bit and 64-bit digest versions.
Diffstat (limited to 'tests/core/Makefile')
| -rw-r--r-- | tests/core/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/core/Makefile b/tests/core/Makefile index 65af21204..5bcb924b1 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 +all: download_test_assets image_test compress_test strings_test hash_test download_test_assets: $(PYTHON) download_assets.py @@ -14,3 +14,6 @@ compress_test: strings_test: $(ODIN) run strings/test_core_strings.odin + +hash_test: + $(ODIN) run hash/test_core_hash.odin -o:size -no-bounds-check
\ No newline at end of file |