aboutsummaryrefslogtreecommitdiff
path: root/gdb/testsuite/lib
diff options
context:
space:
mode:
authorYao Qi <yao@codesourcery.com>2011-10-24 13:51:20 +0000
committerYao Qi <yao@codesourcery.com>2011-10-24 13:51:20 +0000
commitb022178194deccf956290b7e8c76789633e01122 (patch)
treed6d90ae30388f6629b8a1a7837615922c7ac8b3c /gdb/testsuite/lib
parentb6009aca9a683ad95502bf895d62a02fa5d72724 (diff)
downloadgdb-b022178194deccf956290b7e8c76789633e01122.zip
gdb-b022178194deccf956290b7e8c76789633e01122.tar.gz
gdb-b022178194deccf956290b7e8c76789633e01122.tar.bz2
gdb/testsuite/
* lib/gdb.exp (can_single_step_to_signal_handler): Return 0 when target is tic6x-*-*.
Diffstat (limited to 'gdb/testsuite/lib')
-rw-r--r--gdb/testsuite/lib/gdb.exp3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp
index 49a4c7e..f1900ef 100644
--- a/gdb/testsuite/lib/gdb.exp
+++ b/gdb/testsuite/lib/gdb.exp
@@ -1538,7 +1538,8 @@ proc can_single_step_to_signal_handler {} {
# a signal is delivered during software single step, gdb is unable
# to determine the next instruction addresses, because start of signal
# handler is one of them.
- if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"] } {
+ if { [istarget "arm*-*-*"] || [istarget "mips*-*-*"]
+ || [istarget "tic6x-*-*"] } {
return 0
}