From 17f301877f4a9614390b324e10457bf428f7fa46 Mon Sep 17 00:00:00 2001 From: yhirose Date: Fri, 20 Feb 2026 15:45:04 -0500 Subject: [PATCH] Add `bench` command in justfile --- justfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/justfile b/justfile index 321365f..c6fe58e 100644 --- a/justfile +++ b/justfile @@ -41,3 +41,6 @@ build: @(cd test && make test_split) @(cd test && make test_split_mbedtls) @(cd test && make test_split_wolfssl) + +bench: + @(cd benchmark && make bench-all)