From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 45219 invoked by alias); 25 Oct 2015 11:19:33 -0000 Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org Received: (qmail 44037 invoked by uid 89); 25 Oct 2015 11:19:32 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.7 required=5.0 tests=AWL,BAYES_00,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=ham 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; Sun, 25 Oct 2015 11:19:30 +0000 Received: from int-mx11.intmail.prod.int.phx2.redhat.com (int-mx11.intmail.prod.int.phx2.redhat.com [10.5.11.24]) by mx1.redhat.com (Postfix) with ESMTPS id 97B7119CB90; Sun, 25 Oct 2015 11:19:29 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-96.ams2.redhat.com [10.36.116.96]) by int-mx11.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id t9PBJKCI001266 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 25 Oct 2015 07:19:28 -0400 Date: Mon, 26 Oct 2015 03:47:00 -0000 From: Jan Kratochvil To: Luis Machado Cc: Pedro Alves , gdb-patches@sourceware.org Subject: [obv] Fix compile.exp error message expectation [Re: [PATCH] Mention language in compile error message] Message-ID: <20151025111920.GA976@host1.jankratochvil.net> References: <1440011181-32004-1-git-send-email-lgustavo@codesourcery.com> <55DB5267.9040401@redhat.com> <55DE9A86.70100@codesourcery.com> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="GvXjxJ+pjyke8COw" Content-Disposition: inline In-Reply-To: <55DE9A86.70100@codesourcery.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-IsSubscribed: yes X-SW-Source: 2015-10/txt/msg00522.txt.bz2 --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-length: 359 On Thu, 27 Aug 2015 07:05:10 +0200, Luis Machado wrote: > On 08/24/2015 02:20 PM, Pedro Alves wrote: > >On 08/19/2015 08:06 PM, Luis Machado wrote: > >>2015-08-19 Luis Machado > >> > >> * compile/compile.c (compile_to_object): Mention language in > >> error message. > > > >OK. > > I've pushed this now. Checked in as obvious. --GvXjxJ+pjyke8COw Content-Type: message/rfc822 Content-Disposition: inline Content-length: 1922 From: Jan Kratochvil Date: Sun, 25 Oct 2015 12:16:10 +0100 Subject: [PATCH] Fix compile.exp error message expectation Content-length: 1775 commit cdaec3f3e7ea9118204f0e579bd3257234fbae63 Author: Luis Machado Date: Thu Aug 27 02:00:16 2015 -0300 Mention language in compile error message regressed: -PASS: gdb.compile/compile.exp: compile code globalvar +FAIL: gdb.compile/compile.exp: compile code globalvar Update the expected message. gdb/testsuite/ChangeLog 2015-10-25 Jan Kratochvil * gdb.compile/compile.exp (compile code globalvar): Update expectation for a change by "Mention language in compile error message". --- gdb/testsuite/ChangeLog | 5 +++++ gdb/testsuite/gdb.compile/compile.exp | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 1313aa2..9369618 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2015-10-25 Jan Kratochvil + + * gdb.compile/compile.exp (compile code globalvar): Update expectation + for a change by "Mention language in compile error message". + 2015-10-21 Simon Marchi PR python/18073 diff --git a/gdb/testsuite/gdb.compile/compile.exp b/gdb/testsuite/gdb.compile/compile.exp index a416e9e..41c4ac9 100644 --- a/gdb/testsuite/gdb.compile/compile.exp +++ b/gdb/testsuite/gdb.compile/compile.exp @@ -324,7 +324,7 @@ gdb_test "compile code -z" "Unknown argument.*" gdb_test "set lang java" \ "Warning: the current language does not match this frame." -gdb_test "compile code globalvar" "No compiler support for this language\." +gdb_test "compile code globalvar" "No compiler support for language java\\." gdb_test_no_output "set lang auto" gdb_test_no_output "compile code union union_type newdecl_u" -- 2.1.0 --GvXjxJ+pjyke8COw--