From d24409b9bf4783be63109f59d8558cef884069e6 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Sat, 30 Nov 2019 19:38:28 -0500 Subject: fixed some bugs involving returning types --- runv | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'runv') diff --git a/runv b/runv index 614eda3..08a52f8 100755 --- a/runv +++ b/runv @@ -4,7 +4,13 @@ if [ "$2" = "" ]; then else tocf="$2" fi -valgrind -q --track-origins=yes --error-exitcode=1 --malloc-fill=0xcd --free-fill=0xef --num-callers=100 ./toc $tocf || exit 1 +if [ "$1" = "noq" ]; then + FLAGS= +else + FLAGS="-q" +fi + +valgrind $FLAGS --track-origins=yes --error-exitcode=1 --malloc-fill=0xcd --free-fill=0xef --num-callers=100 ./toc $tocf || exit 1 if [ "$1" = "c" ]; then gcc out.c && ./a.out elif [ "$1" = "pc" ]; then -- cgit v1.2.3