aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Weigand <uweigand@de.ibm.com>2010-06-11 17:35:28 +0000
committerUlrich Weigand <uweigand@de.ibm.com>2010-06-11 17:35:28 +0000
commitcaddefa41f6a50f4d2499caf56422263df591e72 (patch)
tree3f3f0d1321e8fab838ec3c2a8bf103777eb3192c
parent468b1aa797455f6cc72bcfd7f5ffd5ef7e88ef22 (diff)
downloadfsf-binutils-gdb-caddefa41f6a50f4d2499caf56422263df591e72.zip
fsf-binutils-gdb-caddefa41f6a50f4d2499caf56422263df591e72.tar.gz
fsf-binutils-gdb-caddefa41f6a50f4d2499caf56422263df591e72.tar.bz2
* gdb.cp/cpexprs.exp: Skip test on spu*-*-*.
* gdb.cp/pr9167.exp: Likewise.
-rw-r--r--gdb/testsuite/ChangeLog5
-rw-r--r--gdb/testsuite/gdb.cp/cpexprs.exp5
-rw-r--r--gdb/testsuite/gdb.cp/pr9167.exp5
3 files changed, 15 insertions, 0 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog
index d66c7b4..4c3f7ff 100644
--- a/gdb/testsuite/ChangeLog
+++ b/gdb/testsuite/ChangeLog
@@ -1,5 +1,10 @@
2010-06-11 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
+ * gdb.cp/cpexprs.exp: Skip test on spu*-*-*.
+ * gdb.cp/pr9167.exp: Likewise.
+
+2010-06-11 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
+
* gdb.python/py-breakpoint.exp: Handle software watchpoints as well.
2010-06-11 Ulrich Weigand <Ulrich.Weigand@de.ibm.com>
diff --git a/gdb/testsuite/gdb.cp/cpexprs.exp b/gdb/testsuite/gdb.cp/cpexprs.exp
index e112c5e..2addc1e 100644
--- a/gdb/testsuite/gdb.cp/cpexprs.exp
+++ b/gdb/testsuite/gdb.cp/cpexprs.exp
@@ -669,6 +669,11 @@ if {$tracelevel} {
if {[skip_cplus_tests]} { continue }
+# On SPU this test fails because the executable exceeds local storage size.
+if { [istarget "spu*-*-*"] } {
+ return 0
+}
+
#
# test running programs
#
diff --git a/gdb/testsuite/gdb.cp/pr9167.exp b/gdb/testsuite/gdb.cp/pr9167.exp
index 7d05ae9..252a647 100644
--- a/gdb/testsuite/gdb.cp/pr9167.exp
+++ b/gdb/testsuite/gdb.cp/pr9167.exp
@@ -13,6 +13,11 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
+# On SPU this test fails because the executable exceeds local storage size.
+if { [istarget "spu*-*-*"] } {
+ return 0
+}
+
set testfile pr9167
set srcfile ${testfile}.cc
if [prepare_for_testing $testfile.exp $testfile $srcfile {debug c++}] {