From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 45345 invoked by alias); 17 May 2017 12:10:35 -0000 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 Received: (qmail 45276 invoked by uid 89); 17 May 2017 12:10:30 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.0 required=5.0 tests=AWL,BAYES_00,FREEMAIL_FROM,RCVD_IN_DNSWL_NONE,RCVD_IN_SORBS_SPAM,SPF_PASS autolearn=no version=3.3.2 spammy=thomaspreudhommefossarmcom, thomas.preudhomme@foss.arm.com, hits X-HELO: mail-pf0-f176.google.com Received: from mail-pf0-f176.google.com (HELO mail-pf0-f176.google.com) (209.85.192.176) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Wed, 17 May 2017 12:10:28 +0000 Received: by mail-pf0-f176.google.com with SMTP id n23so6522007pfb.2 for ; Wed, 17 May 2017 05:10:31 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:references:date:in-reply-to :message-id:user-agent:mime-version:content-transfer-encoding; bh=ptPj0muBTWa7nBB44m71PnFJjDNfoZ51zQ247H1Ag3U=; b=JfzH/EAgyWa+NxzQsP3TjzPmyrDOtMbXp5zqyF4RZYvXV6iwIqRWUAxHTcCyW38Gg3 BOjPSScs9ojXiuOuUsaKj+TpbIfQvnA57KYq6ShoQwzQ/49XrFVY3+b7c03b5scmmTo3 baqsJmuErVpWeZZDPtZjsm5mkMMG5kwqNym8SSWor751qkCmb3B2pkwwyMGapeyUcpSj zvFd+2fLUpEQpS/gW4iZrOnANeG5rpiUWxTVqwxt7UqxNKQg3rahSi0eUxs6kLqE4BK4 Ptn+NJtjzQy/7CN1Um/ty9/fTE+VqHNBLpHNX3H9edEpfxtQQh9nH07V+G5W44q0oJy5 MU/g== X-Gm-Message-State: AODbwcC/jefwBL8fnnc7bfX/jdXg4tZOpqic2m3MGr+GBb4Rl1adVFNW gjVCGGkfqta1WQ== X-Received: by 10.98.80.152 with SMTP id g24mr3312643pfj.222.1495023030564; Wed, 17 May 2017 05:10:30 -0700 (PDT) Received: from E107787-LIN (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id t5sm3684698pgt.19.2017.05.17.05.10.29 (version=TLS1_2 cipher=AES128-SHA bits=128/128); Wed, 17 May 2017 05:10:30 -0700 (PDT) From: Yao Qi To: Thomas Preudhomme Cc: gdb-patches@sourceware.org Subject: Re: [PATCH, GDB/ARM] Expect prompt after no FPU warning References: Date: Wed, 17 May 2017 12:10:00 -0000 In-Reply-To: (Thomas Preudhomme's message of "Wed, 17 May 2017 10:13:16 +0100") Message-ID: <861srnadl8.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.3 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-IsSubscribed: yes X-SW-Source: 2017-05/txt/msg00381.txt.bz2 Thomas Preudhomme writes: > 2017-04-27 Thomas Preud'homme > > * gdb.base/float.exp (info float): Expect GDB prompt for ARM Remove " (info float)". > targets without FPU. > > @@ -50,7 +50,7 @@ if { [is_aarch64_target] } then { > # if we have NEON. > pass "info float (VFP)" > } > - -re "No floating.point info available for this processor.*" { > + -re "No floating.point info available for this processor.*$gdb_p= rompt $" { The fix is right but it can be applied to all archs which may not have FPU. If you search "N floating.point info", you can find multiple hits. $gdb_prompt is needed for all of them. --=20 Yao (=E9=BD=90=E5=B0=A7)