From: Philippe Proulx Date: Thu, 20 Nov 2014 00:15:02 +0000 (-0500) Subject: Fix: utils/run.sh: use `echo -e` to interpret \n X-Git-Url: https://git.efficios.com/?p=ctf-testsuite.git;a=commitdiff_plain;h=2c4f35d6d42a97a3eedec7f7588fe845f7eb9825 Fix: utils/run.sh: use `echo -e` to interpret \n Signed-off-by: Philippe Proulx --- diff --git a/utils/run.sh b/utils/run.sh index 93482d9..938cf60 100755 --- a/utils/run.sh +++ b/utils/run.sh @@ -9,4 +9,4 @@ for t in */; do TEST_LIST="${TEST_LIST}./test.sh ${t}" done -echo "${TEST_LIST}" | prove --exec '' --merge - +echo -e "${TEST_LIST}" | prove --exec '' --merge -