From patchwork Tue Mar 29 13:54:33 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 11546 Received: (qmail 122012 invoked by alias); 29 Mar 2016 13:54:55 -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 121959 invoked by uid 89); 29 Mar 2016 13:54:55 -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=20160317, 2016-03-17, H*MI:7908, H*m:7908 X-HELO: mail-pf0-f179.google.com Received: from mail-pf0-f179.google.com (HELO mail-pf0-f179.google.com) (209.85.192.179) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 29 Mar 2016 13:54:44 +0000 Received: by mail-pf0-f179.google.com with SMTP id 4so14939412pfd.0 for ; Tue, 29 Mar 2016 06:54:44 -0700 (PDT) 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=SrufTIUq1fc9v7FUi4E7kM08uCdPRVy4eI+JX7AU870=; b=RA2F/tSOvgLgUIz3h4lJgcZI1RelinWOEEAGEfha1X8PANQypriNoMAHtkQY4y4bZK T8FgN224fJjFVAuUMbj2xrK8n84Lu1o4aMy4KqeGhP3W393WwpWb7tY6gALEydrDT8TJ suID/R5Gimb4d23UdC+lx+1yQCbp9yMpNR1tsKbrJym5BhyHYRKdgvgszpUJvkpFW1k6 SptyPnUONnWZzthOTSYqbNZ2j59/2j7eQpDAQTRjPvrHvj8NxllS4SfsymARSwhTDz9y xPAyPycIpTR67ua7vwWq2qMx4Q13ZhigdMC0eaxS86NtSz1uwBWQ7o5gSq8dj/021Rl4 eoxQ== X-Gm-Message-State: AD7BkJIJbyjaP/TznS21PT/O/zpN2Afvyl5MdyE5nD/Td25J6vb9dVCSkJ9BYRYJAxCkxA== X-Received: by 10.98.73.88 with SMTP id w85mr3733448pfa.82.1459259682934; Tue, 29 Mar 2016 06:54:42 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by smtp.gmail.com with ESMTPSA id 85sm43588992pfq.6.2016.03.29.06.54.41 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Tue, 29 Mar 2016 06:54:42 -0700 (PDT) From: Yao Qi X-Google-Original-From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH] Compile gdb.arch/arm-neon.exp with debug info Date: Tue, 29 Mar 2016 14:54:33 +0100 Message-Id: <1459259673-7908-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes Pass "debug" to prepare_for_testing otherwise, some tests fail. I'll push it in. gdb/testsuite: 2016-03-29 Yao Qi * gdb.arch/arm-neon.exp: Pass debug 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 5c50aa4..e99e661 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,7 @@ +2016-03-29 Yao Qi + + * gdb.arch/arm-neon.exp: Pass debug to prepare_for_testing. + 2016-03-17 Andreas Arnez * gdb.arch/s390-multiarch.exp: Use standard_testfile instead of diff --git a/gdb/testsuite/gdb.arch/arm-neon.exp b/gdb/testsuite/gdb.arch/arm-neon.exp index e11ec25..053170f 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} {quiet}] } { +if { [prepare_for_testing ${testfile}.exp ${testfile} ${srcfile} {debug quiet}] } { unsupported "ARM NEON is not supported" return -1 }