From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24166 invoked by alias); 18 Dec 2014 11:28:17 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 24155 invoked by uid 89); 18 Dec 2014 11:28:17 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.0 required=5.0 tests=AWL,BAYES_00,SPF_HELO_PASS,T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 18 Dec 2014 11:28:16 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id sBIBS9xV026180 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=FAIL); Thu, 18 Dec 2014 06:28:09 -0500 Received: from [127.0.0.1] (ovpn01.gateway.prod.ext.ams2.redhat.com [10.39.146.11]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id sBIBS6HL031746; Thu, 18 Dec 2014 06:28:06 -0500 Message-ID: <5492BA45.8090205@redhat.com> Date: Thu, 18 Dec 2014 11:28:00 -0000 From: Pedro Alves User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.3.0 MIME-Version: 1.0 To: Ajit Kumar Agarwal , Michael Eager , Joel Brobecker CC: "gdb-patches@sourceware.org" , Vinod Kathail , Vidhumouli Hunsigida , Nagaraju Mekala Subject: Re: [Patch] Microblaze: Port of Linux gdbserver References: <25de23b98e054fd291ea232d10f2800c@BN1BFFO11FD018.protection.gbl> <5436B7D0.9060004@eagercon.com> <543E7630.5060001@redhat.com> <99de529c620a4bb0a118a9fc39ae6ad0@BY2FFO11FD008.protection.gbl> <548F2240.7020700@redhat.com> In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-SW-Source: 2014-12/txt/msg00519.txt.bz2 On 12/18/2014 08:56 AM, Ajit Kumar Agarwal wrote: > From: Pedro Alves [mailto:palves@redhat.com] > On 10/17/2014 08:22 PM, Ajit Kumar Agarwal wrote: > >> Gdb.base gdb testsuite is run and here is the status of gdb testsuite run for gdb.base. >> >> === gdb Summary === >> >> # of expected passes 7804 >> # of unexpected failures 2263 > >>> Over 2000 unexpected failures is not very reassuring though. >>> Have you looked at the logs to get an idea of what might be broken? > > We have looked at the log files for the failures. Here are the main categories of the failure. > > 1. push_dummy_code is not implemented for Micro blaze port due to this there are 350+ failures. Eh, no inferior function call support. Are you planning on implementing this? You can set gdb,cannot_call_functions in your board file to skip the affected tests meanwhile. > 2. Failures for signals is around 357. What sort of failures? > 3. Watch point failures are around 817. Set gdb,no_hardware_watchpoints in the board file. > > Main total categories of the failure = 376 + 357 + 817 = 1550. > > These failures are not because of gdbserver patch and they seem to exist prior to this patch. Thanks, Pedro Alves