From 2037fbeba540a4330a438c33c31c2b60c233ebc5 Mon Sep 17 00:00:00 2001 From: PThorpe92 Date: Mon, 21 Apr 2025 12:22:40 -0400 Subject: [PATCH] Add bench-vfs command to makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 623fbb6ce..9c5364aef 100644 --- a/Makefile +++ b/Makefile @@ -70,7 +70,6 @@ test: limbo uv-sync test-compat test-vector test-sqlite3 test-shell test-extensi .PHONY: test test-extensions: limbo uv-sync - cargo build --package limbo_regexp uv run --project limbo_test test-extensions .PHONY: test-extensions @@ -110,6 +109,9 @@ test-update: limbo uv-sync SQLITE_EXEC=$(SQLITE_EXEC) uv run --project limbo_test test-update .PHONY: test-update +bench-vfs: uv-sync + uv run --project limbo_test bench-vfs "$(SQL)" "$(N)" + clickbench: ./perf/clickbench/benchmark.sh .PHONY: clickbench