mirror of
https://github.com/Ed94/Odin.git
synced 2026-06-13 09:22:22 -07:00
21 lines
457 B
Batchfile
21 lines
457 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% test image %COMMON%
|
|
del image.exe
|
|
|
|
echo ---
|
|
echo Running core:compress tests
|
|
echo ---
|
|
%PATH_TO_ODIN% test compress %COMMON%
|
|
del compress.exe
|
|
|
|
echo ---
|
|
echo Running core:strings tests
|
|
echo ---
|
|
%PATH_TO_ODIN% test strings %COMMON%
|
|
del strings.exe |