diff options
| author | Mark Wielaard <[email protected]> | 2014-12-19 18:33:52 +0100 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2014-12-19 18:33:52 +0100 |
| commit | cdfc853b401f2897d470638d32fcc51520c13733 (patch) | |
| tree | 4a5adcf350e96a66135c45adb7913a0527c2ced5 /tests/backtrace-subr.sh | |
| parent | 544d008acdcd6417c70b1b42be52206a24599102 (diff) | |
tests: run-deleted.sh should SKIP if arch doesn't support unwinding.
Also relax the special ARM needs DWARF check a little to account for eu-stack
error output.
Signed-off-by: Mark Wielaard <[email protected]>
Diffstat (limited to 'tests/backtrace-subr.sh')
| -rw-r--r-- | tests/backtrace-subr.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/backtrace-subr.sh b/tests/backtrace-subr.sh index 1d3d6d47..f04721cf 100644 --- a/tests/backtrace-subr.sh +++ b/tests/backtrace-subr.sh @@ -87,7 +87,7 @@ check_native_unsupported() # 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' $err; 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 |
