diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2019-11-20 09:57:17 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2019-11-20 09:57:17 -0500 |
commit | b905ea0f51cba69837643717182982dd93cd3f0d (patch) | |
tree | 3a1bdd03da32c84bfc6adc2c78d991919a42bfee /runv | |
parent | 1151e30d50b64e34356214c39beb0a62326e988c (diff) |
fixed some bugs; caused some others
Diffstat (limited to 'runv')
-rwxr-xr-x | runv | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,5 +1,5 @@ #!/bin/sh -valgrind -q --track-origins=yes --error-exitcode=1 --malloc-fill=0xcd ./toc test.toc || exit 1 +valgrind -q --track-origins=yes --error-exitcode=1 --malloc-fill=0xcd --free-fill=0xef --num-callers=100 ./toc test.toc || exit 1 if [ "$1" = "c" ]; then gcc out.c && ./a.out elif [ "$1" = "pc" ]; then |