From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19317 invoked by alias); 23 Mar 2007 12:13:52 -0000 Received: (qmail 19306 invoked by uid 22791); 23 Mar 2007 12:13:51 -0000 X-Spam-Check-By: sourceware.org Received: from dmz.mips-uk.com (HELO dmz.mips-uk.com) (194.74.144.194) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 23 Mar 2007 12:13:44 +0000 Received: from internal-mx1 ([192.168.192.240] helo=ukservices1.mips.com) by dmz.mips-uk.com with esmtp (Exim 3.35 #1 (Debian)) id 1HUieK-0005Lg-00; Fri, 23 Mar 2007 12:13:40 +0000 Received: from perivale.mips.com ([192.168.192.200]) by ukservices1.mips.com with esmtp (Exim 3.36 #1 (Debian)) id 1HUieF-0000fk-00; Fri, 23 Mar 2007 12:13:35 +0000 Received: from macro (helo=localhost) by perivale.mips.com with local-esmtp (Exim 4.63) (envelope-from ) id 1HUieF-00031z-Fu; Fri, 23 Mar 2007 12:13:35 +0000 Date: Fri, 23 Mar 2007 12:13:00 -0000 From: "Maciej W. Rozycki" To: gdb-patches@sourceware.org cc: Nigel Stephens , "Maciej W. Rozycki" Subject: Fix messages when skipping tests due to "nosignals" Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-MIPS-Technologies-UK-MailScanner: Found to be clean X-MIPS-Technologies-UK-MailScanner-From: macro@mips.com 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 X-SW-Source: 2007-03/txt/msg00204.txt.bz2 Hello, A couple of tests report incorrect names of themselves when being skipped due to "nosignals". It looks like a cut & paste bug. 2007-03-23 Nigel Stephens Maciej W. Rozycki * gdb.base/sigbpt.exp: Fix the message when skipping test. * gdb.base/signull.exp: Similarly. OK to apply? Maciej 12099-3.diff Index: binutils-quilt/src/gdb/testsuite/gdb.base/sigbpt.exp =================================================================== --- binutils-quilt.orig/src/gdb/testsuite/gdb.base/sigbpt.exp 2007-03-22 19:14:08.000000000 +0000 +++ binutils-quilt/src/gdb/testsuite/gdb.base/sigbpt.exp 2007-03-23 12:01:19.000000000 +0000 @@ -30,7 +30,7 @@ # software single-step this is KFAILed rather than XFAILed. if [target_info exists gdb,nosignals] { - verbose "Skipping signals.exp because of nosignals." + verbose "Skipping sigbpt.exp because of nosignals." continue } Index: binutils-quilt/src/gdb/testsuite/gdb.base/signull.exp =================================================================== --- binutils-quilt.orig/src/gdb/testsuite/gdb.base/signull.exp 2007-03-22 19:14:08.000000000 +0000 +++ binutils-quilt/src/gdb/testsuite/gdb.base/signull.exp 2007-03-23 12:01:25.000000000 +0000 @@ -29,7 +29,7 @@ # This also tests backtrace/gdb1476. if [target_info exists gdb,nosignals] { - verbose "Skipping signals.exp because of nosignals." + verbose "Skipping signull.exp because of nosignals." continue }