* gdb.cp/cpexprs.exp: Skip test on spu*-*-*.

* gdb.cp/pr9167.exp: Likewise.
This commit is contained in:
Ulrich Weigand 2010-06-11 17:35:28 +00:00
parent 468b1aa797
commit caddefa41f
3 changed files with 15 additions and 0 deletions

View File

@ -1,3 +1,8 @@
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.

View 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
#

View File

@ -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++}] {