From: Stephane Carrez Date: Sun, 23 Feb 2003 22:11:07 +0000 (+0000) Subject: * lib/gdb.exp: Don't execute C++ tests on m6811/m6812 targets. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1146c7f1ab78016dd5b2a23f00fce8cb5479de26;p=binutils-gdb.git * lib/gdb.exp: Don't execute C++ tests on m6811/m6812 targets. --- diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 64073f2c5d1..7f29257e252 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2003-02-23 Stephane Carrez + + * lib/gdb.exp: Don't execute C++ tests on m6811/m6812 targets. + 2003-02-13 Michael Chastain * gdb.base/exprs.exp: Remove i960 remnants. diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index dca41dc9134..d2b6fbdb8c6 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -1004,6 +1004,15 @@ proc skip_cplus_tests {} { if { [istarget "h8300-*-*"] } { return 1 } + + # The C++ IO streams are too large for HC11/HC12 and are thus not + # available. The gdb C++ tests use them and don't compile. + if { [istarget "m6811-*-*"] } { + return 1 + } + if { [istarget "m6812-*-*"] } { + return 1 + } return 0 }