summaryrefslogtreecommitdiff
path: root/runv
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2020-07-10 12:08:40 -0400
committerLeo Tenenbaum <pommicket@gmail.com>2020-07-10 12:08:40 -0400
commit72c4d0a78c067806a6341a5fc5acb33d5805896b (patch)
tree2f2bdda14e247915b27e73b353d32501886dca42 /runv
parente684e1bce6ac55607d0612a3f99031c7dfbdfc90 (diff)
big changes to the way for loops work
Diffstat (limited to 'runv')
-rwxr-xr-xrunv4
1 files changed, 2 insertions, 2 deletions
diff --git a/runv b/runv
index 4134417..8cba96a 100755
--- a/runv
+++ b/runv
@@ -12,8 +12,8 @@ fi
valgrind $FLAGS --track-origins=yes --exit-on-first-error=yes --error-exitcode=1 --malloc-fill=0xcd --free-fill=0xef --num-callers=100 ./toc $tocf || exit 1
if [ "$1" = "c" ]; then
- gcc out.c -g -Wno-builtin-declaration-mismatch && ./a.out
+ ./test
elif [ "$1" = "pc" ]; then
- cat out.c
+ cat test.c
fi
rm vgcore* 2> /dev/null