From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 13610 invoked by alias); 14 Nov 2003 20:09:25 -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 13599 invoked from network); 14 Nov 2003 20:09:24 -0000 Received: from unknown (HELO localhost.redhat.com) (66.30.197.194) by sources.redhat.com with SMTP; 14 Nov 2003 20:09:24 -0000 Received: by localhost.redhat.com (Postfix, from userid 469) id D43881A42DB; Fri, 14 Nov 2003 15:09:23 -0500 (EST) From: Elena Zannoni MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <16309.13939.786088.679758@localhost.redhat.com> Date: Fri, 14 Nov 2003 20:09:00 -0000 To: mec.gnu@mindspring.com (Michael Elizabeth Chastain) Cc: ezannoni@redhat.com, gdb-patches@sources.redhat.com Subject: Re: [RFA] new test for separate debug info In-Reply-To: <20031114193714.872554B3FA@berman.michael-chastain.com> References: <20031114193714.872554B3FA@berman.michael-chastain.com> X-SW-Source: 2003-11/txt/msg00303.txt.bz2 Michael Elizabeth Chastain writes: > Elena Zannoni writes: > > # If we have too many warnings or errors, > # the output of the test can't be considered correct. > if { $warning_threshold > 0 && $warncnt >= $warning_threshold > || $perror_threshold > 0 && $errcnt >= $perror_threshold } { > verbose "Error/Warning threshold exceeded: \ > $errcnt $warncnt (max. $perror_threshold $warning_threshold)" > set type UNRESOLVED > } > > Ick! > > > what to do? Maybe just get rid of the unsupported call, and just get > > out of the test. > > Well, "nothing different" is okay. I'm not worried about the actual > output, as long as we understand why it behaves that way, and stick that > understanding into a comment somewhere. > > As Daniel alluded to -- what SHOULD happen when an end user tries > to do this with stabs+? Should binutils bonk out with a nice error > message? > I think binutils is a bit confused with separate debug info and stabs. That would need to be fixed as well. I am really tempted to just bail out for stabs. elena > Michael C