* gdb.cp/pr9167.exp: Likewise.
+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.
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
#
# 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++}] {