From 2f61569ee114c3a7f4937cad19003890c8e12a54 Mon Sep 17 00:00:00 2001 From: olemorud Date: Fri, 28 Apr 2023 18:27:57 +0200 Subject: [PATCH] test.sh: Less verbose output --- test.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test.sh b/test.sh index cbab5c7..c207cd7 100755 --- a/test.sh +++ b/test.sh @@ -21,7 +21,7 @@ for file in sample-files/*.json; do echo -n "(debug) testing with $file: " - time_cmd ./bin/debug/parse $file 2>$stderr_output + time_cmd ./bin/debug/parse $file 1>/dev/null 2>$stderr_output result=$? @@ -49,7 +49,7 @@ for file in sample-files/*.json; do echo -n "(release) testing with $file: " - time_cmd ./bin/release/parse $file 2>$stderr_output + time_cmd ./bin/release/parse $file 1>/dev/null 2>$stderr_output result=$?