From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 1595 invoked by alias); 11 Sep 2004 09:59:03 -0000 Mailing-List: contact gdb-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-owner@sources.redhat.com Received: (qmail 1568 invoked from network); 11 Sep 2004 09:58:58 -0000 Received: from unknown (HELO alice.acmet.com) (61.16.238.202) by sourceware.org with SMTP; 11 Sep 2004 09:58:58 -0000 Received: from monika (localhost [127.0.0.1]) by alice.acmet.com (8.11.6/8.11.6) with ESMTP id i8BA4nl17477; Sat, 11 Sep 2004 15:34:50 +0530 X-Authentication-Warning: alice.acmet.com: iscan owned process doing -bs From: "Monika Chaddha" To: "'Michael Chastain'" , Subject: RE: debugger 6.2.1 misfeatures Date: Sat, 11 Sep 2004 09:59:00 -0000 Message-ID: <004501c497e5$a53cd9b0$5100a8c0@monika> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit In-Reply-To: <4142590A.nailCR31XGTUA@mindspring.com> X-SW-Source: 2004-09/txt/msg00086.txt.bz2 Is it necessary to send test cases with the bug? I had sent the following bug with patch some days ago but didn't get any response regarding this. I don't have any test case till now to prove this bug as it can be test only for remote target during tracing. What should I do? Pls help. Thanks & Regards Monika Defect report:- ------------- File ----- /src/sim/mips/m16.igen Defects -------- 1. Mnemonic for CMP instruction is putted as "sltiu r, r" While it should be as "cmp r, r" 2. Mnemonic for CMPI instruction is putted as "sltiu r, " While it should be as "cmpi r, " Patch ----- GDB Version no: 6.0 File: /src/sim/mips/m16.igen 11101,3.RX,3.RY,01010:RR:16::CMP -"sltiu r, r" +"cmp r, r" *mips16: *vr4100: { do_xor (SD_, TRX, TRY, T8IDX); } 01110,3.RX,8.IMMED:RI:16::CMPI -"sltiu r, " +"cmpi r, " *mips16: *vr4100: { do_xori (SD_, TRX, T8IDX, IMMED); } >-----Original Message----- >From: gdb-owner@sources.redhat.com [mailto:gdb-owner@sources.redhat.com] On >Behalf Of Michael Chastain >Sent: Saturday, September 11, 2004 7:17 AM >To: gdb@sources.redhat.com; esp5@pge.com >Subject: Re: debugger 6.2.1 misfeatures > >Sounds like a bug to me. > >Generally for a bug, we need: > > the gdb version > the host operating system version > the target operating system version (if it's not the same as the host) > a typescript of the whole gdb session showing the bug > (use the 'script' command) > some info about the inferior program: > what language it's written in > the exact compiler name and compiler version that it was built with > >Then if somebody picks up the bug, they're likely to come back with >more questions. The point at this stage is not to identify the bug, >but just to throw enough information over the fence so that the >gdb engineer can *reproduce* the bug. > >If it worked with a previous version of gdb, that's good to know. > >It's really great if you can supply a small test program >(source + binary) that demonstrates the bug. > >And some bug reports are successful and get fixed, and some aren't >and don't. > >Michael Chastain