summaryrefslogtreecommitdiffstats
path: root/tests/backtrace-subr.sh
diff options
context:
space:
mode:
authorMark Wielaard <[email protected]>2014-12-19 23:20:25 +0100
committerMark Wielaard <[email protected]>2014-12-19 23:20:25 +0100
commit7555c33aca3bdc4b565ce647b87cf0693e61de9c (patch)
tree5586c46bb6dcb093c82f43e21ff29ca9d627cdf1 /tests/backtrace-subr.sh
parentbe6ce84d68443fbe1bf3734c594031bee8e6ac77 (diff)
parent3943a3893619466d0927495485bca8a9b96a3dc9 (diff)
Merge 0.161 into mjw/RH-DTS
Diffstat (limited to 'tests/backtrace-subr.sh')
-rw-r--r--tests/backtrace-subr.sh13
1 files changed, 10 insertions, 3 deletions
diff --git a/tests/backtrace-subr.sh b/tests/backtrace-subr.sh
index 875e0b68..f04721cf 100644
--- a/tests/backtrace-subr.sh
+++ b/tests/backtrace-subr.sh
@@ -74,13 +74,20 @@ check_unsupported()
echo >&2 $testname: arch not supported
exit 77
fi
+}
+
+check_native_unsupported()
+{
+ err=$1
+ testname=$2
+ check_unsupported $err $testname
# ARM is special. It is supported, but it doesn't use .eh_frame by default
# making the native tests fail unless debuginfo (for glibc) is installed
# and we can fall back on .debug_frame for the CFI.
case "`uname -m`" in
arm* )
- if grep 'dwfl_thread_getframes: No DWARF information found' $1; then
+ if egrep 'dwfl_thread_getframes(.*)No DWARF information found' $err; then
echo >&2 $testname: arm needs debuginfo installed for all libraries
exit 77
fi
@@ -109,7 +116,7 @@ check_native()
tempfiles $child.{bt,err}
(set +ex; testrun ${abs_builddir}/backtrace --backtrace-exec=${abs_builddir}/$child 1>$child.bt 2>$child.err; true)
cat $child.{bt,err}
- check_unsupported $child.err $child
+ check_native_unsupported $child.err $child
check_all $child.{bt,err} $child
}
@@ -140,6 +147,6 @@ check_native_core()
tempfiles $core{,.{bt,err}}
(set +ex; testrun ${abs_builddir}/backtrace -e ${abs_builddir}/$child --core=$core 1>$core.bt 2>$core.err; true)
cat $core.{bt,err}
- check_unsupported $core.err $child-$core
+ check_native_unsupported $core.err $child-$core
check_all $core.{bt,err} $child-$core
}