summaryrefslogtreecommitdiff
path: root/tests/check-namespace.sh.in
diff options
context:
space:
mode:
authorTommi Rantala <tt.rantala@gmail.com>2012-08-02 11:57:09 +0300
committerTommi Rantala <tt.rantala@gmail.com>2012-08-21 22:30:46 +0300
commit56f07a8e550dab4734524e3f03ac98c9fbd52fc6 (patch)
tree02f88731980c95bad5b653ff4a28f9c386be54df /tests/check-namespace.sh.in
parent96cc0e83166ac85373a52e5abb9c51f3d287e1d4 (diff)
downloadlibunwind-56f07a8e550dab4734524e3f03ac98c9fbd52fc6.tar.gz
Stop using nonportable echo arguments in tests
echo arguments are not portable, so use printf when we need to print tabs or newlines.
Diffstat (limited to 'tests/check-namespace.sh.in')
-rw-r--r--tests/check-namespace.sh.in2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/check-namespace.sh.in b/tests/check-namespace.sh.in
index e7705d48..d2e6efb2 100644
--- a/tests/check-namespace.sh.in
+++ b/tests/check-namespace.sh.in
@@ -299,7 +299,7 @@ check_cxx_abi () {
check_empty () {
if [ -n "$symtab" ]; then
- echo -e " ERROR: Extraneous symbols:\n$symtab"
+ printf " ERROR: Extraneous symbols:\n$symtab\n"
num_errors=`expr $num_errors + 1`
fi
}