diff options
author | Leo Tenenbaum <pommicket@gmail.com> | 2019-12-06 11:21:19 -0500 |
---|---|---|
committer | Leo Tenenbaum <pommicket@gmail.com> | 2019-12-06 11:21:19 -0500 |
commit | d78f0258edd3259bfdba29c99800683c27b1f48c (patch) | |
tree | ea5bf1e228c58a39d939413b272eba9a3b6bdf2d /tests | |
parent | 753923c9a3ae6b5e3d6754083c2f2a8742b62ebb (diff) |
fixed a problem with default arguments
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 0b10981..4fe800e 100755 --- a/tests/test.sh +++ b/tests/test.sh @@ -17,7 +17,7 @@ do_tests() { for CC in $COMPILERS; do for EXTRA_CFLAGS in "-O0 -g" "-O3 -s"; do - printf "Running test $1 C compiler $CC and flags $EXTRA_CFLAGS... " + printf "Running test $1 with C compiler $CC and flags $EXTRA_CFLAGS... " compile "$1" cd "$DIR/$1" ./test.sh || { printf "\x1b[91mfailed!\x1b[0m\n"; exit 1; } |