From patchwork Mon Jun 22 12:48:42 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 7288 Received: (qmail 6233 invoked by alias); 22 Jun 2015 12:48:53 -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 6221 invoked by uid 89); 22 Jun 2015 12:48:52 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=ham version=3.3.2 X-HELO: mail-pd0-f175.google.com Received: from mail-pd0-f175.google.com (HELO mail-pd0-f175.google.com) (209.85.192.175) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Mon, 22 Jun 2015 12:48:51 +0000 Received: by pdbki1 with SMTP id ki1so138375657pdb.1 for ; Mon, 22 Jun 2015 05:48:50 -0700 (PDT) X-Received: by 10.68.228.168 with SMTP id sj8mr57938123pbc.102.1434977329964; Mon, 22 Jun 2015 05:48:49 -0700 (PDT) Received: from [127.0.0.1] (gcc1-power7.osuosl.org. [140.211.15.137]) by mx.google.com with ESMTPSA id bi4sm19779639pbc.56.2015.06.22.05.48.48 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 22 Jun 2015 05:48:49 -0700 (PDT) Message-ID: <5588042A.2000203@gmail.com> Date: Mon, 22 Jun 2015 13:48:42 +0100 From: Yao Qi User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: gdb-patches@sourceware.org Subject: Re: [PATCH OBV] Don't skip hw breakpoint/watchpoint tests for aarch64 target References: <1434976837-10069-1-git-send-email-yao.qi@linaro.org> In-Reply-To: <1434976837-10069-1-git-send-email-yao.qi@linaro.org> X-IsSubscribed: yes On 22/06/15 13:40, Yao Qi wrote: > @@ -2611,6 +2612,7 @@ proc skip_hw_watchpoint_tests {} { > || [istarget "x86_64-*-*"] > || [istarget "ia64-*-*"] > || [istarget "arm*-*-*"] > + || [istarget "aarch*-*-*"] Sorry, it should be "aarch64*-*-*". Patch below is pushed in. diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 5a9a7eb..3a48bcd 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,9 @@ +2015-06-22 Yao Qi + + * lib/gdb.exp (skip_hw_breakpoint_tests): Return 0 for target + aarch64*-*-*. + (skip_hw_watchpoint_tests): Likewise. + 2015-06-18 Patrick Palka * gdb.base/gdbinit-history.exp: Test the interaction between diff --git a/gdb/testsuite/lib/gdb.exp b/gdb/testsuite/lib/gdb.exp index b5928c3..9edf2dc 100644 --- a/gdb/testsuite/lib/gdb.exp +++ b/gdb/testsuite/lib/gdb.exp @@ -2556,7 +2556,8 @@ proc skip_hw_breakpoint_tests {} { if { [istarget "i?86-*-*"] || [istarget "x86_64-*-*"] || [istarget "ia64-*-*"] - || [istarget "arm*-*-*"]} { + || [istarget "arm*-*-*"] + || [istarget "aarch64*-*-*"]} { return 0 } @@ -2576,6 +2577,7 @@ proc skip_hw_watchpoint_tests {} { || [istarget "x86_64-*-*"] || [istarget "ia64-*-*"] || [istarget "arm*-*-*"] + || [istarget "aarch64*-*-*"] || [istarget "powerpc*-*-linux*"] || [istarget "s390*-*-*"] } { return 0