From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1203 invoked by alias); 23 Feb 2003 20:59:31 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 1195 invoked from network); 23 Feb 2003 20:59:31 -0000 Received: from unknown (HELO kraid.nerim.net) (62.4.16.102) by 172.16.49.205 with SMTP; 23 Feb 2003 20:59:31 -0000 Received: from nerim.fr (stcarrez.net1.nerim.net [62.212.108.40]) by kraid.nerim.net (Postfix) with ESMTP id CC35B40E2F; Sun, 23 Feb 2003 21:59:28 +0100 (CET) Message-ID: <3E593631.9000505@nerim.fr> Date: Sun, 23 Feb 2003 20:59:00 -0000 From: Stephane Carrez User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:0.9.4.1) Gecko/20020508 Netscape6/6.2.3 X-Accept-Language: en-us MIME-Version: 1.0 To: gdb-patches@sources.redhat.com Subject: [RFA]: Don't execute C++ tests for HC11/HC12 Content-Type: multipart/mixed; boundary="------------020609060807020504020605" X-SW-Source: 2003-02/txt/msg00559.txt.bz2 This is a multi-part message in MIME format. --------------020609060807020504020605 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 350 Hi! 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. Can you approve this patch to avoid executing the C++ tests for the m6811/m6812 targets? Thanks, Stephane 2003-02-23 Stephane Carrez * lib/gdb.exp: Don't execute C++ tests on m6811/m6812 targets. --------------020609060807020504020605 Content-Type: text/plain; name="gdb.exp.diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb.exp.diffs" Content-length: 514 Index: lib/gdb.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/lib/gdb.exp,v retrieving revision 1.34 diff -u -p -r1.34 gdb.exp --- lib/gdb.exp 31 Jan 2003 00:38:33 -0000 1.34 +++ lib/gdb.exp 23 Feb 2003 20:53:27 -0000 @@ -1004,6 +1004,12 @@ proc skip_cplus_tests {} { if { [istarget "h8300-*-*"] } { return 1 } + if { [istarget "m6811-*-*"] } { + return 1 + } + if { [istarget "m6812-*-*"] } { + return 1 + } return 0 } --------------020609060807020504020605--