From patchwork Tue Sep 8 20:21:52 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Doug Evans X-Patchwork-Id: 8602 Received: (qmail 108958 invoked by alias); 8 Sep 2015 20:21:56 -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 108942 invoked by uid 89); 8 Sep 2015 20:21:55 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=AWL, BAYES_05, RCVD_IN_DNSWL_LOW, SPF_PASS, T_RP_MATCHES_RCVD autolearn=ham version=3.3.2 X-HELO: mail-pd0-f201.google.com Received: from mail-pd0-f201.google.com (HELO mail-pd0-f201.google.com) (209.85.192.201) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES128-GCM-SHA256 encrypted) ESMTPS; Tue, 08 Sep 2015 20:21:54 +0000 Received: by pdrk8 with SMTP id k8so7820546pdr.1 for ; Tue, 08 Sep 2015 13:21:52 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:mime-version:message-id:date:subject:from:to :content-type; bh=4Z9qn8+2kAxJhTx9MM3y8cIxFjyqoTI1E0E6pSlxyiE=; b=JzUjLjCHIDUSAeqdXfoZl+z94vZFlnLBcQGE3JfWjymo5w3PhC6p35cLIs1hYzZu+N +mGTCL4R6rHe32vL6F6MjL6xvYrw6cKApLTgDSteiZ3OnRf4L/PQk5kEf8fxNHcGTzhl xi4CMYo+E25wEBH4T84uyR2b6DL8jlbL0YM0/DV7AtjHX557UbjnnSfceVLEy3h9fDXI U6sbNa/kRCKuADTI6e1PB0fwxhwbHmK3rsTZB57eMm99VoFzfNWyDMLUcKupAPPkbRLB 1NZ3UVji74JVhDNqSy6uWG56LzDLesk7+5Tz7q+i1CASVDuIWGGj045mYSefbIpLcwxN Ub9A== X-Gm-Message-State: ALoCoQm40wZ0MU3oIPmvMY2tF8BOecm4ibvl57ANgfHt4SOFouThdETmJqoNZL4FCinbpnURbvmWQuuTuq7KlrM+d+gNvUx6xqhwJH9n6zuttvZSEuAwc2XJvC0lsUXBQP8jsy/cDRW/OQsiiyAPw5FcCXgR+jpgFkDZ6V8S+dBkmA3oJq/NBLU= MIME-Version: 1.0 X-Received: by 10.66.102.39 with SMTP id fl7mr17620053pab.38.1441743712858; Tue, 08 Sep 2015 13:21:52 -0700 (PDT) Message-ID: <047d7bd9164edd052e051f421ddb@google.com> Date: Tue, 08 Sep 2015 20:21:52 +0000 Subject: [PATCH] gdb.go/methods.exp: Mark gdb_breakpoint calls as known failures. From: Doug Evans To: gdb-patches@sourceware.org X-IsSubscribed: yes Hi. Marking these as known failures until they can be fixed. 2015-09-08 Doug Evans PR go/18926 * gdb.go/methods.exp: Mark gdb_breakpoint calls as known failures. gdb_test "cont" "Breakpoint .*:${bp_location2_regexp}.*" "Going to second breakpoint" diff --git a/gdb/testsuite/gdb.go/methods.exp b/gdb/testsuite/gdb.go/methods.exp index 643e29c..fa02c2b 100644 --- a/gdb/testsuite/gdb.go/methods.exp +++ b/gdb/testsuite/gdb.go/methods.exp @@ -36,14 +36,14 @@ if { [go_runto_main] < 0 } { return -1 } -if { [gdb_breakpoint ${bp_location1}] } { - pass "setting breakpoint 1" -} +setup_kfail "go/18926" "*-*-*" +gdb_breakpoint ${bp_location1} message + setup_xfail "*-*-*" ;# mangling issues IIRC gdb_test "cont" "Breakpoint .*:${bp_location1}.*" "Going to first breakpoint" -if { [gdb_breakpoint ${bp_location2}] } { - pass "setting breakpoint 2" -} +setup_kfail "go/18926" "*-*-*" +gdb_breakpoint ${bp_location2} message + setup_xfail "*-*-*" ;# mangling issues IIRC