OSDN Git Service

* gdb.cp/cpexprs.exp: Skip test on spu*-*-*.
authoruweigand <uweigand>
Fri, 11 Jun 2010 17:35:27 +0000 (17:35 +0000)
committeruweigand <uweigand>
Fri, 11 Jun 2010 17:35:27 +0000 (17:35 +0000)
* gdb.cp/pr9167.exp: Likewise.

gdb/testsuite/ChangeLog
gdb/testsuite/gdb.cp/cpexprs.exp
gdb/testsuite/gdb.cp/pr9167.exp

index d66c7b4..4c3f7ff 100644 (file)
@@ -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>
index e112c5e..2addc1e 100644 (file)
@@ -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
 #
index 7d05ae9..252a647 100644 (file)
 # 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++}] {