mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-05 15:18:49 +00:00
Update tests to use new filename generation code.
This commit is contained in:
+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