summaryrefslogtreecommitdiff
path: root/tests/test.sh
diff options
context:
space:
mode:
authorLeo Tenenbaum <pommicket@gmail.com>2019-12-06 11:21:19 -0500
committerLeo Tenenbaum <pommicket@gmail.com>2019-12-06 11:21:19 -0500
commitd78f0258edd3259bfdba29c99800683c27b1f48c (patch)
treeea5bf1e228c58a39d939413b272eba9a3b6bdf2d /tests/test.sh
parent753923c9a3ae6b5e3d6754083c2f2a8742b62ebb (diff)
fixed a problem with default arguments
Diffstat (limited to 'tests/test.sh')
-rwxr-xr-xtests/test.sh2
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; }