diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2019-11-26 16:41:28 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2019-11-26 16:41:28 -0500 |
commit | 7c232ad8c766eef3b498900803bbbe01e865de8c (patch) | |
tree | 757f6adb6ef56dda1f783fd2fd0f3a8cae66c9d0 /tests | |
parent | 619233a1505a0143615551f7af3a39ba5a2fafed (diff) |
cleanup, switched to enums for flags
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/test.sh | 2 |
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 |