summaryrefslogtreecommitdiff
path: root/runv
blob: cb147292c7c3b3b838510ce52abc4dfaae70b42b (plain)
1
2
3
4
5
6
7
8
#!/bin/sh
valgrind -q --track-origins=yes ./toc test.toc || exit 1
if [ "$1" = "c" ]; then
	gcc out.c && ./a.out
elif [ "$1" = "pc" ]; then
	cat out.c
fi
rm vgcore* 2> /dev/null