mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-02 12:48:14 +00:00
Update tests to use new filename generation code.
This commit is contained in:
+15
-14
@@ -1,5 +1,6 @@
|
||||
ODIN=../../odin
|
||||
PYTHON=$(shell which python3)
|
||||
OUT_FILE=test_binary.bin
|
||||
|
||||
all: download_test_assets image_test compress_test strings_test hash_test crypto_test noise_test encoding_test \
|
||||
math_test linalg_glsl_math_test filepath_test reflect_test os_exit_test
|
||||
@@ -8,39 +9,39 @@ download_test_assets:
|
||||
$(PYTHON) download_assets.py
|
||||
|
||||
image_test:
|
||||
$(ODIN) run image/test_core_image.odin -file
|
||||
$(ODIN) run image/test_core_image.odin -out=$(OUT_FILE) -file
|
||||
|
||||
compress_test:
|
||||
$(ODIN) run compress/test_core_compress.odin -file
|
||||
$(ODIN) run compress/test_core_compress.odin -out=$(OUT_FILE) -file
|
||||
|
||||
strings_test:
|
||||
$(ODIN) run strings/test_core_strings.odin -file
|
||||
$(ODIN) run strings/test_core_strings.odin -out=$(OUT_FILE) -file
|
||||
|
||||
hash_test:
|
||||
$(ODIN) run hash -out=test_hash -o:speed -no-bounds-check
|
||||
$(ODIN) run hash -out=$(OUT_FILE) -o:speed -no-bounds-check
|
||||
|
||||
crypto_test:
|
||||
$(ODIN) run crypto -out=test_crypto_hash -o:speed -no-bounds-check
|
||||
$(ODIN) run crypto -out=$(OUT_FILE) -o:speed -no-bounds-check
|
||||
|
||||
noise_test:
|
||||
$(ODIN) run math/noise -out=test_noise
|
||||
$(ODIN) run math/noise -out=$(OUT_FILE)
|
||||
|
||||
encoding_test:
|
||||
$(ODIN) run encoding/hxa -out=test_hxa -collection:tests=..
|
||||
$(ODIN) run encoding/json -out=test_json
|
||||
$(ODIN) run encoding/varint -out=test_varint
|
||||
$(ODIN) run encoding/hxa -out=$(OUT_FILE) -collection:tests=..
|
||||
$(ODIN) run encoding/json -out=$(OUT_FILE)
|
||||
$(ODIN) run encoding/varint -out=$(OUT_FILE)
|
||||
|
||||
math_test:
|
||||
$(ODIN) run math/test_core_math.odin -out=test_core_math -file -collection:tests=..
|
||||
$(ODIN) run math/test_core_math.odin -out=$(OUT_FILE) -file -collection:tests=..
|
||||
|
||||
linalg_glsl_math_test:
|
||||
$(ODIN) run math/linalg/glsl/test_linalg_glsl_math.odin -file -out=test_linalg_glsl_math -collection:tests=..
|
||||
$(ODIN) run math/linalg/glsl/test_linalg_glsl_math.odin -file -out=$(OUT_FILE) -collection:tests=..
|
||||
|
||||
filepath_test:
|
||||
$(ODIN) run path/filepath/test_core_filepath.odin -file -out=test_core_filepath -collection:tests=..
|
||||
$(ODIN) run path/filepath/test_core_filepath.odin -file -out=$(OUT_FILE) -collection:tests=..
|
||||
|
||||
reflect_test:
|
||||
$(ODIN) run reflect/test_core_reflect.odin -file -out=test_core_reflect -collection:tests=..
|
||||
$(ODIN) run reflect/test_core_reflect.odin -file -out=$(OUT_FILE) -collection:tests=..
|
||||
|
||||
os_exit_test:
|
||||
$(ODIN) run os/test_core_os_exit.odin -file -out=test_core_os_exit && exit 1 || exit 0
|
||||
$(ODIN) run os/test_core_os_exit.odin -file -out=$(OUT_FILE) && exit 1 || exit 0
|
||||
|
||||
+17
-15
@@ -1,65 +1,67 @@
|
||||
@echo off
|
||||
set COMMON=-show-timings -no-bounds-check -vet -strict-style -collection:tests=..
|
||||
set OUT_FILE=test_binary.exe
|
||||
set COMMON=-show-timings -no-bounds-check -vet -strict-style -collection:tests=.. -out:%OUT_FILE%
|
||||
set PATH_TO_ODIN==..\..\odin
|
||||
|
||||
python3 download_assets.py
|
||||
echo ---
|
||||
echo Running core:image tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run image %COMMON% -out:test_image
|
||||
%PATH_TO_ODIN% run image %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:compress tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run compress %COMMON% -out:test_compress
|
||||
%PATH_TO_ODIN% run compress %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:strings tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run strings %COMMON% -out:test_strings
|
||||
%PATH_TO_ODIN% run strings %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:hash tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run hash %COMMON% -o:size -out:test_hash
|
||||
%PATH_TO_ODIN% run hash %COMMON% -o:size
|
||||
|
||||
echo ---
|
||||
echo Running core:odin tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run odin %COMMON% -o:size -out:test_odin
|
||||
%PATH_TO_ODIN% run odin %COMMON% -o:size
|
||||
|
||||
echo ---
|
||||
echo Running core:crypto hash tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run crypto %COMMON% -out:test_crypto
|
||||
%PATH_TO_ODIN% run crypto %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:encoding tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run encoding/hxa %COMMON% -out:test_hxa
|
||||
%PATH_TO_ODIN% run encoding/json %COMMON% -out:test_json
|
||||
%PATH_TO_ODIN% run encoding/varint %COMMON% -out:test_varint
|
||||
%PATH_TO_ODIN% run encoding/hxa %COMMON%
|
||||
%PATH_TO_ODIN% run encoding/json %COMMON%
|
||||
%PATH_TO_ODIN% run encoding/varint %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:math/noise tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run math/noise %COMMON% -out:test_noise
|
||||
%PATH_TO_ODIN% run math/noise %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:math tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run math %COMMON% -out:test_math
|
||||
%PATH_TO_ODIN% run math %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:math/linalg/glsl tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run math/linalg/glsl %COMMON% -out:test_glsl
|
||||
%PATH_TO_ODIN% run math/linalg/glsl %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:path/filepath tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run path/filepath %COMMON% -out:test_filepath
|
||||
%PATH_TO_ODIN% run path/filepath %COMMON%
|
||||
|
||||
echo ---
|
||||
echo Running core:reflect tests
|
||||
echo ---
|
||||
%PATH_TO_ODIN% run reflect %COMMON% -out:test_reflect
|
||||
%PATH_TO_ODIN% run reflect %COMMON%
|
||||
|
||||
Reference in New Issue
Block a user