Update tests to use new filename generation code.

This commit is contained in:
Jeroen van Rijn
2022-04-24 14:19:25 +02:00
parent f4723aea4c
commit 3d2856db31
8 changed files with 62 additions and 57 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
ODIN=../../odin
ODINFLAGS=
OUT_FILE=test_binary.bin
OS=$(shell uname)
@@ -10,4 +11,4 @@ endif
all: botan_test
botan_test:
$(ODIN) run botan -out=test_botan_hash -o:speed -no-bounds-check $(ODINFLAGS)
$(ODIN) run botan -out=$(OUT_FILE) -o:speed -no-bounds-check $(ODINFLAGS)
+2 -1
View File
@@ -1,5 +1,6 @@
@echo off
set COMMON=-show-timings -no-bounds-check -vet -strict-style
set OUT_FILE=test_binary.exe
set COMMON=-show-timings -no-bounds-check -vet -strict-style -out:%OUT_FILE%
set PATH_TO_ODIN==..\..\odin
echo ---