summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-11-26 16:41:28 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2019-11-26 16:41:28 -0500
commit7c232ad8c766eef3b498900803bbbe01e865de8c (patch)
tree757f6adb6ef56dda1f783fd2fd0f3a8cae66c9d0 /tests
parent619233a1505a0143615551f7af3a39ba5a2fafed (diff)
cleanup, switched to enums for flags
Diffstat (limited to 'tests')
-rwxr-xr-xtests/test.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test.sh b/tests/test.sh
index 470251e..b0ee8e6 100755
--- a/tests/test.sh
+++ b/tests/test.sh
@@ -9,12 +9,12 @@ fi
echo $$
compile() {
- $TOC $DIR/$1/$1.toc -o $DIR/$1/$1.c > /dev/null || exit 1
$CC $EXTRA_CFLAGS $CFLAGS -o $DIR/$1/$1.bin $DIR/$1/$1.c || exit 1
}
STARTPWD="$(pwd)"
+valgrind -q $TOC $DIR/bf/bf.toc -o $DIR/bf/bf.c > /dev/null || exit 1
for CC in $COMPILERS; do
for EXTRA_CFLAGS in "-O0 -g" "-O3 -s"; do