From c59789120cad7e8e67ebd7bee9e8b062364ff285 Mon Sep 17 00:00:00 2001 From: = <=> Date: Sat, 16 May 2020 16:12:12 +0100 Subject: [PATCH] Valgrind should only print errors in tests --- src/tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tests.sh b/src/tests.sh index 888f4f0..ac7d019 100755 --- a/src/tests.sh +++ b/src/tests.sh @@ -20,7 +20,7 @@ fail() { check() { local output if (($VALGRIND == 1)); then - local output=$(valgrind --leak-check=full --track-origins=yes ./pebblisp "$2") + local output=$(valgrind -q --leak-check=full --track-origins=yes ./pebblisp "$2") else local output=$(./pebblisp "$2") fi