From patchwork Thu Jun 4 19:38:20 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jan Kratochvil X-Patchwork-Id: 7043 Received: (qmail 10532 invoked by alias); 4 Jun 2015 19:38:27 -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 10522 invoked by uid 89); 4 Jun 2015 19:38:26 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.3 required=5.0 tests=AWL, BAYES_00, KAM_LAZY_DOMAIN_SECURITY, SPF_HELO_PASS, T_RP_MATCHES_RCVD autolearn=no version=3.3.2 X-HELO: mx1.redhat.com Received: from mx1.redhat.com (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with (AES256-GCM-SHA384 encrypted) ESMTPS; Thu, 04 Jun 2015 19:38:25 +0000 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (Postfix) with ESMTPS id BEB0F34C6E6 for ; Thu, 4 Jun 2015 19:38:24 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-44.ams2.redhat.com [10.36.116.44]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t54JcKhA025790 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 4 Jun 2015 15:38:23 -0400 Date: Thu, 4 Jun 2015 21:38:20 +0200 From: Jan Kratochvil To: gdb-patches@sourceware.org Cc: Phil Muldoon Subject: [obv] compile-print.exp: xfail->kfail for '@' GDB array operator Message-ID: <20150604193820.GA18453@host1.jankratochvil.net> MIME-Version: 1.0 Content-Disposition: inline User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes Patch implementing '@' GDB array operator in GCC has been rejected: https://gcc.gnu.org/ml/gcc-patches/2015-06/msg00414.html and so there is now a GDB tracker to implement it just in GDB: https://sourceware.org/bugzilla/show_bug.cgi?id=18489 gdb/testsuite/ChangeLog 2015-06-04 Jan Kratochvil * gdb.compile/compile-print.exp (compile print *vararray@3) (compile print *vararrayp@3): Change xfail to kfail compile/18489. --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.compile/compile-print.exp | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 5ee74eb..246d6a8 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-06-04 Jan Kratochvil + + * gdb.compile/compile-print.exp (compile print *vararray@3) + (compile print *vararrayp@3): Change xfail to kfail compile/18489. + 2015-06-03 Jan Kratochvil * gdb.compile/compile.exp (keep jit in memory): Rename to ... diff --git a/gdb/testsuite/gdb.compile/compile-print.exp b/gdb/testsuite/gdb.compile/compile-print.exp index 92c6240..de2f0e7 100644 --- a/gdb/testsuite/gdb.compile/compile-print.exp +++ b/gdb/testsuite/gdb.compile/compile-print.exp @@ -38,7 +38,7 @@ gdb_test_multiple $test $test { pass $test } -re ": error: stray '@' in program\r\n.*\r\n$gdb_prompt $" { - xfail "$test (gcc does not support '@')" + kfail compile/18489 "$test" } } @@ -48,7 +48,7 @@ gdb_test_multiple $test $test { pass $test } -re ": error: stray '@' in program\r\n.*\r\n$gdb_prompt $" { - xfail "$test (gcc does not support '@')" + kfail compile/18489 "$test" } }