diff options
author | Ulrich Weigand <uweigand@de.ibm.com> | 2006-11-22 17:19:52 +0000 |
---|---|---|
committer | Ulrich Weigand <uweigand@de.ibm.com> | 2006-11-22 17:19:52 +0000 |
commit | c1d88655bbf33f050943125801b2bdc5d1a73b8d (patch) | |
tree | e86c319dabefa859a2a7fd0cb3f6dde84ccc3b07 /gdb/testsuite/gdb.gdb | |
parent | 32a13b1aece8fc98a122ae52d1801d96781d66ac (diff) | |
download | gdb-c1d88655bbf33f050943125801b2bdc5d1a73b8d.zip gdb-c1d88655bbf33f050943125801b2bdc5d1a73b8d.tar.gz gdb-c1d88655bbf33f050943125801b2bdc5d1a73b8d.tar.bz2 |
* gdb.asm/asm-source.exp: Add "spu*-*-*" target.
* gdb.asm/spu.inc: New file.
* gdb.base/term.exp: Disable if [target_info exists noargs].
* gdb.gdb/complaints.exp: Disable if ![isnative].
* gdb.gdb/selftest.exp: Likewise.
* gdb.gdb/observer.exp: Likewise.
* gdb.gdb/xfullpath.exp: Likewise.
* gdb.base/attach.exp: Disable on SPU target.
* gdb.cp/bs145503.exp: Likewise.
* gdb.cp/exception.exp: Likewise.
* gdb.cp/userdef.exp: Likewise.
Diffstat (limited to 'gdb/testsuite/gdb.gdb')
-rw-r--r-- | gdb/testsuite/gdb.gdb/complaints.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.gdb/observer.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.gdb/selftest.exp | 2 | ||||
-rw-r--r-- | gdb/testsuite/gdb.gdb/xfullpath.exp | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.gdb/complaints.exp b/gdb/testsuite/gdb.gdb/complaints.exp index 2dd1508..2cf142a 100644 --- a/gdb/testsuite/gdb.gdb/complaints.exp +++ b/gdb/testsuite/gdb.gdb/complaints.exp @@ -27,7 +27,7 @@ set prms_id 0 set bug_id 0 # are we on a target board -if [is_remote target] { +if { [is_remote target] || ![isnative] } then { return } diff --git a/gdb/testsuite/gdb.gdb/observer.exp b/gdb/testsuite/gdb.gdb/observer.exp index b6d43b57..5b3a798 100644 --- a/gdb/testsuite/gdb.gdb/observer.exp +++ b/gdb/testsuite/gdb.gdb/observer.exp @@ -25,7 +25,7 @@ set prms_id 0 set bug_id 0 # are we on a target board -if [is_remote target] { +if { [is_remote target] || ![isnative] } then { return } diff --git a/gdb/testsuite/gdb.gdb/selftest.exp b/gdb/testsuite/gdb.gdb/selftest.exp index 4a1ef0d..201bd38 100644 --- a/gdb/testsuite/gdb.gdb/selftest.exp +++ b/gdb/testsuite/gdb.gdb/selftest.exp @@ -25,7 +25,7 @@ set prms_id 0 set bug_id 0 # are we on a target board -if [is_remote target] { +if { [is_remote target] || ![isnative] } then { return } diff --git a/gdb/testsuite/gdb.gdb/xfullpath.exp b/gdb/testsuite/gdb.gdb/xfullpath.exp index 570b311..971a05e 100644 --- a/gdb/testsuite/gdb.gdb/xfullpath.exp +++ b/gdb/testsuite/gdb.gdb/xfullpath.exp @@ -26,7 +26,7 @@ set prms_id 0 set bug_id 0 # are we on a target board -if [is_remote target] { +if { [is_remote target] || ![isnative] } then { return } |