test.sh: Less verbose output

This commit is contained in:
olemorud
2023-04-28 18:27:57 +02:00
parent 4201755246
commit 2f61569ee1

View File

@@ -21,7 +21,7 @@ for file in sample-files/*.json; do
echo -n "(debug) testing with $file: " 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=$? result=$?
@@ -49,7 +49,7 @@ for file in sample-files/*.json; do
echo -n "(release) testing with $file: " 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=$? result=$?