From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28172 invoked by alias); 28 Feb 2002 21:15:16 -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 28062 invoked from network); 28 Feb 2002 21:15:07 -0000 Received: from unknown (HELO fred.ninemoons.com) (68.15.182.197) by sources.redhat.com with SMTP; 28 Feb 2002 21:15:07 -0000 Received: (from fnf@localhost) by fred.ninemoons.com (8.11.6/8.11.6) id g1SLEOj20230; Thu, 28 Feb 2002 14:14:24 -0700 From: Fred Fish Message-Id: <200202282114.g1SLEOj20230@fred.ninemoons.com> Subject: [RFA] Fix logic error suppressing attach.exp tests To: gdb-patches@sources.redhat.com Date: Thu, 28 Feb 2002 13:15:00 -0000 Cc: fnf@redhat.com Reply-To: fnf@redhat.com X-Mailer: ELM [version 2.5 PL6] MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2002-02/txt/msg00752.txt.bz2 2002-02-28 Fred Fish * gdb.base/attach.exp: Fix logic error that was suppressing this test for all non hppa*-*-hpux* targets, instead of the hp target. Move comments closer to the suppression point. Index: gdb.base/attach.exp =================================================================== RCS file: /cvs/src/src/gdb/testsuite/gdb.base/attach.exp,v retrieving revision 1.2 diff -c -p -r1.2 attach.exp *** attach.exp 2001/03/06 08:21:50 1.2 --- attach.exp 2002/02/28 21:11:58 *************** *** 17,42 **** # Please email any bugs, comments, and/or additions to this file to: # bug-gdb@prep.ai.mit.edu - # On HP-UX 11.0, this test is causing a process running - # the program "attach" to be left around spinning. - # Until we figure out why, I am commenting out the test - # to avoid polluting tiamat (our 11.0 nightly test machine) - # with these processes. RT - # - # Setting the magic bit in the target app should work. - # I added a "kill", and also a test for the R3 register - # warning. JB - # if $tracelevel then { strace $tracelevel } set prms_id 0 set bug_id 0 - ! if { ![istarget "hppa*-*-hpux*"] } { ! #setup_xfail "*-*-*" return 0 } --- 17,37 ---- # Please email any bugs, comments, and/or additions to this file to: # bug-gdb@prep.ai.mit.edu if $tracelevel then { strace $tracelevel } set prms_id 0 set bug_id 0 ! # On HP-UX 11.0, this test is causing a process running the program ! # "attach" to be left around spinning. Until we figure out why, I am ! # commenting out the test to avoid polluting tiamat (our 11.0 nightly ! # test machine) with these processes. RT ! # ! # Setting the magic bit in the target app should work. I added a ! # "kill", and also a test for the R3 register warning. JB ! if { [istarget "hppa*-*-hpux*"] } { return 0 }