From patchwork Thu Mar 26 11:54:41 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Yao Qi X-Patchwork-Id: 5824 Received: (qmail 112079 invoked by alias); 26 Mar 2015 11:54:49 -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 112065 invoked by uid 89); 26 Mar 2015 11:54:49 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=2.4 required=5.0 tests=AWL, BAYES_00, FREEMAIL_FROM, KAM_FROM_URIBL_PCCC, RCVD_IN_DNSWL_LOW, SPF_PASS autolearn=no version=3.3.2 X-HELO: mail-pd0-f174.google.com Received: from mail-pd0-f174.google.com (HELO mail-pd0-f174.google.com) (209.85.192.174) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Thu, 26 Mar 2015 11:54:47 +0000 Received: by pdnc3 with SMTP id c3so60764734pdn.0 for ; Thu, 26 Mar 2015 04:54:46 -0700 (PDT) X-Received: by 10.68.231.40 with SMTP id td8mr25625553pbc.53.1427370886051; Thu, 26 Mar 2015 04:54:46 -0700 (PDT) Received: from E107787-LIN.cambridge.arm.com (gcc1-power7.osuosl.org. [140.211.15.137]) by mx.google.com with ESMTPSA id cr1sm5335525pdb.7.2015.03.26.04.54.44 for (version=TLSv1.2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Thu, 26 Mar 2015 04:54:45 -0700 (PDT) From: Yao Qi To: gdb-patches@sourceware.org Subject: [PATCH] kfail two tests in no-unwaited-for-left.exp for remote target Date: Thu, 26 Mar 2015 11:54:41 +0000 Message-Id: <1427370881-6028-1-git-send-email-qiyaoltc@gmail.com> X-IsSubscribed: yes From: Yao Qi I see these two fails in no-unwaited-for-left.exp in remote testing for aarch64-linux target. ... continue Continuing. warning: Remote failure reply: E.No unwaited-for children left. [Thread 1084] #2 stopped. (gdb) FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when thread 2 exits .... continue Continuing. warning: Remote failure reply: E.No unwaited-for children left. [Thread 1081] #1 stopped. (gdb) FAIL: gdb.threads/no-unwaited-for-left.exp: continue stops when the main thread exits I checked the gdb.log on buildbot, and find that these two fails also appear on Debian-i686-native-extended-gdbserver and Fedora-ppc64be-native-gdbserver-m64. I recall that they are about local/remote parity, and related RSP is missing. There has been already a PR 14618 about it. This patch is to kfail them on remote target. gdb/testsuite: 2015-03-26 Yao Qi * gdb.threads/no-unwaited-for-left.exp: Set up kfail if target is remote. --- gdb/testsuite/gdb.threads/no-unwaited-for-left.exp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gdb/testsuite/gdb.threads/no-unwaited-for-left.exp b/gdb/testsuite/gdb.threads/no-unwaited-for-left.exp index 518301e..3a43d58 100644 --- a/gdb/testsuite/gdb.threads/no-unwaited-for-left.exp +++ b/gdb/testsuite/gdb.threads/no-unwaited-for-left.exp @@ -37,6 +37,9 @@ gdb_test_no_output "set scheduler-locking on" \ "enable scheduler-locking, for thread 2" # Continue. Thread 2 exits, and the main thread was already stopped. +if [is_remote target] { + setup_kfail "gdb/14618" "*-*-*" +} gdb_test "continue" \ "No unwaited-for children left." \ "continue stops when thread 2 exits" @@ -58,6 +61,9 @@ gdb_continue_to_breakpoint "break-here-2" ".* break-here-2 .*" gdb_test_no_output "set scheduler-locking on" \ "enable scheduler-locking, for main thread" # The main thread exits, and thread 3 was already stopped. +if [is_remote target] { + setup_kfail "gdb/14618" "*-*-*" +} gdb_test "continue" \ "No unwaited-for children left." \ "continue stops when the main thread exits"