mirror of
https://github.com/odin-lang/Odin.git
synced 2025-12-29 01:14:40 +00:00
43 lines
879 B
Batchfile
43 lines
879 B
Batchfile
@echo off
|
|
set COMMON=-show-timings -no-bounds-check -vet -strict-style
|
|
set PATH_TO_ODIN==..\..\odin
|
|
python3 download_assets.py
|
|
echo ---
|
|
echo Running core:image tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run image %COMMON%
|
|
|
|
echo ---
|
|
echo Running core:compress tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run compress %COMMON%
|
|
|
|
echo ---
|
|
echo Running core:strings tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run strings %COMMON%
|
|
|
|
echo ---
|
|
echo Running core:hash tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run hash %COMMON% -o:size
|
|
|
|
echo ---
|
|
echo Running core:odin tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run odin %COMMON% -o:size
|
|
|
|
echo ---
|
|
echo Running core:crypto hash tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run crypto %COMMON%
|
|
|
|
echo ---
|
|
echo Running core:encoding tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run encoding %COMMON%
|
|
|
|
echo ---
|
|
echo Running core:math/noise tests
|
|
echo ---
|
|
%PATH_TO_ODIN% run math/noise %COMMON% |