From patchwork Tue Mar 1 15:19:26 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 11155 Received: (qmail 17530 invoked by alias); 1 Mar 2016 15:19:43 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Unsubscribe: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Delivered-To: mailing list gdb-patches@sourceware.org Received: (qmail 17502 invoked by uid 89); 1 Mar 2016 15:19:42 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-2.6 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 spammy=Hx-languages-length:1436, sk:s390-td, sk:s390td, UD:s390-tdbregs.exp X-HELO: mail-pf0-f182.google.com Received: from mail-pf0-f182.google.com (HELO mail-pf0-f182.google.com) (209.85.192.182) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 01 Mar 2016 15:19:39 +0000 Received: by mail-pf0-f182.google.com with SMTP id w128so69732879pfb.2 for ; Tue, 01 Mar 2016 07:19:39 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:subject:date:message-id; bh=7/Nd/K4vn/xvooWc3pT5VkQKvVwF61RS3pQB+iMdidA=; b=HxY6V5fFTC1jN+v0PL3CRJwWvmUSvFHoXAN83QNEa5WLscD/VErijc4e8CusxRXhNH UuQ34gw2yJkihORUkSm0soW1bzYdBhmIuF35fQkydv14UC5+J1e5rUl5EVpdOfICAqzQ HmKGu91JvxGNK9tz7NYAPrR3zs7rL1vGs/f0tiG+Q4s7+pOQarMX+Mwwqi2Bl+nlt1Eg KqSO/sTszymeqHW+yUuo5z03VbtMI+ED5ak5ApZ3xrN8/MHPUc+fZB0FRg8tKh1NSup4 CX7UCeZzWxJU6uO94EMYtIM6lXJ+xz2gCOI3yKs+AGLLKut3no4cH8AFl9TkDhqXa8/L Ds7g== X-Gm-Message-State: AD7BkJLEsSFynZuj7N4iIaXecDgWdvCMoa/Q7VcPtGnA2ovNrkX1lloz0StXRlbavlfVQg== X-Received: by 10.98.73.142 with SMTP id r14mr4188149pfi.140.1456845577868; Tue, 01 Mar 2016 07:19:37 -0800 (PST) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id a25sm5424545pfj.40.2016.03.01.07.19.36 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 01 Mar 2016 07:19:37 -0800 (PST) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH/COMMITTED] Compile gdb.arch/arm-neon.c with "quiet" Date: Tue, 1 Mar 2016 15:19:26 +0000 Message-Id: <1456845566-28525-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes When we compile gdb.arch/arm-neon.c with options that don't enable NEON, there are many error/warnings emitted into gdb.sum, which is annoying. This patch fixes it by passing quiet to prepare_for_testing. Patch is pushed in. gdb/testsuite: 2016-03-01 Yao Qi * gdb.arch/arm-neon.exp: Pass quiet to prepare_for_testing. --- gdb/testsuite/ChangeLog | 4 ++++ gdb/testsuite/gdb.arch/arm-neon.exp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 00fe95d..828b498 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-03-01 Yao Qi + + * gdb.arch/arm-neon.exp: Pass quiet to prepare_for_testing. + 2016-03-01 Andreas Arnez * gdb.arch/s390-tdbregs.exp: Use prepare_for_testing instead of diff --git a/gdb/testsuite/gdb.arch/arm-neon.exp b/gdb/testsuite/gdb.arch/arm-neon.exp index 1b8dbc2..e11ec25 100644 --- a/gdb/testsuite/gdb.arch/arm-neon.exp +++ b/gdb/testsuite/gdb.arch/arm-neon.exp @@ -21,7 +21,7 @@ if {![istarget "aarch64*-*-*"] && ![istarget "arm*-*-*"]} { } standard_testfile -if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile}] } { +if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {quiet}] } { unsupported "ARM NEON is not supported" return -1 }