schematestutils.sh: improve shell portability: avoid "echo -e"

* tests/schematestutils.sh: Use printf rather than echo -e.
This commit is contained in:
Jim Meyering
2010-04-14 17:34:12 +02:00
parent 50bf3101a3
commit ad896a1cdd
+1 -1
View File
@@ -22,7 +22,7 @@ do
test_result $n $(basename $(dirname $xml))"/"$(basename $xml) $ret
if test "$verbose" = "1" && test $ret != 0 ; then
echo -e "$cmd\n$result"
printf '%s\n' "$cmd" "$result"
fi
if test "$ret" != 0 ; then
f=`expr $f + 1`