From b2ba81c40ad9f5513c7f6520cbba4bf7afacc9f1 Mon Sep 17 00:00:00 2001 From: Ivar Fatland Date: Mon, 25 May 2026 20:43:04 +0200 Subject: [PATCH] remove valgrind for now --- justfile | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/justfile b/justfile index 88b9841..fcd79c6 100644 --- a/justfile +++ b/justfile @@ -12,11 +12,9 @@ TESTBIN := TMP/"all_tests" set shell := ["bash", "-cu"] -RUNNER := if os() == "linux" { "valgrind" } else { "" } - [default] test: build - {{RUNNER}} {{TESTBIN}} + {{TESTBIN}} test_memcheck: build valgrind --leak-check=full \