From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from simark.ca by simark.ca with LMTP id q+x2A/4pHmIZdwAAWB0awg (envelope-from ) for ; Tue, 01 Mar 2022 09:13:18 -0500 Received: by simark.ca (Postfix, from userid 112) id F239F1F3CA; Tue, 1 Mar 2022 09:13:17 -0500 (EST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on simark.ca X-Spam-Level: X-Spam-Status: No, score=-2.9 required=5.0 tests=BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,MAILING_LIST_MULTI,NICE_REPLY_A,RDNS_DYNAMIC, URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.2 Received: from sourceware.org (ip-8-43-85-97.sourceware.org [8.43.85.97]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPS id 7EBD01EA69 for ; Tue, 1 Mar 2022 09:13:17 -0500 (EST) Received: from server2.sourceware.org (localhost [IPv6:::1]) by sourceware.org (Postfix) with ESMTP id 65995385841E for ; Tue, 1 Mar 2022 14:13:16 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 65995385841E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1646143996; bh=ShEVTHhc60xivVhvJcrIOB8fh9xHEfFUyOOeOIjgYdE=; h=Date:Subject:To:References:In-Reply-To:List-Id:List-Unsubscribe: List-Archive:List-Post:List-Help:List-Subscribe:From:Reply-To: From; b=OHnIQFMA3ZSaL1CBnDdFV+wbcTsePd9OmHGl09VyhbrHo/4pZiePPPmGhOJtfciho s3Ku6F+hpT+biCAc+tdok54DsGQszw6kWW2UmIgm/dTIkujw7G3KWN12yZRk+sgCmm 59qX1Dp/C//eRqDa/Ax3HlPggy8eop4sWRLgdfA0= Received: from smtp.polymtl.ca (smtp.polymtl.ca [132.207.4.11]) by sourceware.org (Postfix) with ESMTPS id E36BB3858D20 for ; Tue, 1 Mar 2022 14:12:56 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org E36BB3858D20 Received: from simark.ca (simark.ca [158.69.221.121]) (authenticated bits=0) by smtp.polymtl.ca (8.14.7/8.14.7) with ESMTP id 221ECjOE014557 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT); Tue, 1 Mar 2022 09:12:51 -0500 DKIM-Filter: OpenDKIM Filter v2.11.0 smtp.polymtl.ca 221ECjOE014557 Received: from [10.0.0.11] (192-222-157-6.qc.cable.ebox.net [192.222.157.6]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by simark.ca (Postfix) with ESMTPSA id 466B21EA69; Tue, 1 Mar 2022 09:12:44 -0500 (EST) Message-ID: <26ffd2e4-4aab-4367-96fb-bb8330b8eff8@polymtl.ca> Date: Tue, 1 Mar 2022 09:12:44 -0500 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:91.0) Gecko/20100101 Thunderbird/91.6.1 Subject: Re: [PATCH v5 0/2] Modify can_spawn_for_attach Content-Language: en-US To: Tiezhu Yang , gdb-patches@sourceware.org References: <1645584316-5375-1-git-send-email-yangtiezhu@loongson.cn> <724bfb12-1301-1763-58b2-7a166ee9b22d@loongson.cn> <52930d69-2534-6c6d-e716-e256020bc4a2@polymtl.ca> In-Reply-To: <52930d69-2534-6c6d-e716-e256020bc4a2@polymtl.ca> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Poly-FromMTA: (simark.ca [158.69.221.121]) at Tue, 1 Mar 2022 14:12:45 +0000 X-BeenThere: gdb-patches@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gdb-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , From: Simon Marchi via Gdb-patches Reply-To: Simon Marchi Errors-To: gdb-patches-bounces+public-inbox=simark.ca@sourceware.org Sender: "Gdb-patches" On 2022-02-28 09:36, Simon Marchi via Gdb-patches wrote: > On 2022-02-28 01:59, Tiezhu Yang wrote: >> >> >> On 02/23/2022 10:45 AM, Tiezhu Yang wrote: >>> v5: >>>   -- Use "unsupported" instead of "untested" in patch #1, >>>      suggested by Simon Marchi, thank you. >>> >>> v4: >>>   -- Add patch #1 to print explicit test result for some test. >>>   -- Modify patch #2 suggested by Simon Marchi, thank you. >>> >>> Tiezhu Yang (2): >>>   gdb: testsuite: print explicit test result in can_spawn_for_attach >>>   gdb: testsuite: fix wrong expected result in attach-pie-noexec.exp >>> >>>  gdb/testsuite/lib/gdb.exp | 46 +++++++++++++++++++++++++++++++++++++++------- >>>  1 file changed, 39 insertions(+), 7 deletions(-) >>> >> >> Hi, >> >> I modified the patches as you suggested. >> Any more comments? >> Can I push this patchset to the master? > > Yeah, please go ahead, thanks. > > Simon Actually, this causes the following test failures: FAIL: gdb.base/gdb-caching-proc.exp: can_spawn_for_attach: 0: can spawn for attach (got interactive prompt) Can you please take a look? Thanks, Simon