aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen van Rijn <Kelimion@users.noreply.github.com>2024-06-01 13:17:59 +0200
committerFeoramund <161657516+Feoramund@users.noreply.github.com>2024-06-02 14:54:31 -0400
commit6050bc3bf66f5b2159f339a1b62f855fd774b966 (patch)
tree95164c0a55dd53f4520851e164df779932814b5f
parent306169699c6f59d910fc38e357124de6f93c78dd (diff)
Add missing benchmarks build.bat.
-rw-r--r--tests/benchmark/build.bat13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/benchmark/build.bat b/tests/benchmark/build.bat
new file mode 100644
index 000000000..e9051855b
--- /dev/null
+++ b/tests/benchmark/build.bat
@@ -0,0 +1,13 @@
+@echo off
+set COMMON=-no-bounds-check -vet -strict-style
+set PATH_TO_ODIN==..\..\odin
+
+echo ---
+echo Running core:crypto benchmarks
+echo ---
+%PATH_TO_ODIN% test crypto %COMMON% -o:speed -out:bench_crypto.exe || exit /b
+
+echo ---
+echo Running core:hash benchmarks
+echo ---
+%PATH_TO_ODIN% test hash %COMMON% -o:speed -out:bench_hash.exe || exit /b \ No newline at end of file