From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 26509 invoked by alias); 23 Feb 2003 21:43:19 -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 26501 invoked from network); 23 Feb 2003 21:43:19 -0000 Received: from unknown (HELO kraid.nerim.net) (62.4.16.102) by 172.16.49.205 with SMTP; 23 Feb 2003 21:43:19 -0000 Received: from nerim.fr (stcarrez.net1.nerim.net [62.212.108.40]) by kraid.nerim.net (Postfix) with ESMTP id DA4F640F12; Sun, 23 Feb 2003 22:43:16 +0100 (CET) Message-ID: <3E594075.3050705@nerim.fr> Date: Sun, 23 Feb 2003 21:43: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: Michael Elizabeth Chastain Cc: gdb-patches@sources.redhat.com Subject: Re: [RFA]: Don't execute C++ tests for HC11/HC12 References: <200302232110.h1NLAhi01353@duracef.shout.net> Content-Type: multipart/mixed; boundary="------------010804020904090406020602" X-SW-Source: 2003-02/txt/msg00561.txt.bz2 This is a multi-part message in MIME format. --------------010804020904090406020602 Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Content-length: 738 Hi Michael, Michael Elizabeth Chastain wrote: > Hi Stephane, > > I like this patch. I need two things and then I will approve it. > > >>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. >> > > Please add this note as a comment in skip_cplus_tests, for the > benefit of future maintainers. > > Also tell me how you tested your patch. I do not need an exhaustive test. > I just need you to describe whatever you did on your system to test > the patch. > I'm running the full gdb validation with 'make check'. (with gcc 3_3 branch and binutils main branch; configured with --target=m6811-elf). Attached the new patch with the comment added. Stephane --------------010804020904090406020602 Content-Type: text/plain; name="gdb.exp.diffs" Content-Transfer-Encoding: 7bit Content-Disposition: inline; filename="gdb.exp.diffs" Content-length: 652 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 21:35:21 -0000 @@ -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 } --------------010804020904090406020602--