From 7e8028e1941ec1a6376b5ebd43964d334af4df72 Mon Sep 17 00:00:00 2001 From: Leo Tenenbaum Date: Mon, 25 Nov 2019 15:30:02 -0500 Subject: cleaning up --- runv | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'runv') diff --git a/runv b/runv index ccd621f..614eda3 100755 --- a/runv +++ b/runv @@ -1,5 +1,10 @@ #!/bin/sh -valgrind -q --track-origins=yes --error-exitcode=1 --malloc-fill=0xcd --free-fill=0xef --num-callers=100 ./toc test.toc || exit 1 +if [ "$2" = "" ]; then + tocf=test.toc +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" = "c" ]; then gcc out.c && ./a.out elif [ "$1" = "pc" ]; then -- cgit v1.2.3