From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 5419 invoked by alias); 14 Jul 2019 11:27:17 -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 4546 invoked by uid 89); 14 Jul 2019 11:27:16 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.3 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: mx1.suse.de Received: from mx2.suse.de (HELO mx1.suse.de) (195.135.220.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Sun, 14 Jul 2019 11:27:15 +0000 Received: from relay2.suse.de (unknown [195.135.220.254]) by mx1.suse.de (Postfix) with ESMTP id DD71AADF7; Sun, 14 Jul 2019 11:27:13 +0000 (UTC) Subject: Re: [committed][gdb/testsuite] Fix unterminated string in gdb.objc/basicclass.exp From: Tom de Vries To: gdb-patches@sourceware.org Cc: Iain Sandoe References: <20190714112401.GA2892@delia> Openpgp: preference=signencrypt Message-ID: <73cf5aa3-6732-0e4e-c9bd-0377fa26537a@suse.de> Date: Sun, 14 Jul 2019 11:27:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.6.1 MIME-Version: 1.0 In-Reply-To: <20190714112401.GA2892@delia> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2019-07/txt/msg00357.txt.bz2 [ Fixed email address ] On 14-07-19 13:24, Tom de Vries wrote: > Hi, > > The test-case gdb.objc/basicclass.exp contains an unterminated string, > introduced in refactoring commit fa43b1d7ca "after gdb_run_cmd, gdb_expect -> > gdb_test_multiple/gdb_test". > > Fix the unterminated string. > > Committed to trunk. > > Thanks, > - Tom > > [gdb/testsuite] Fix unterminated string in gdb.objc/basicclass.exp > > gdb/testsuite/ChangeLog: > > 2019-07-14 Tom de Vries > > PR testsuite/24760 > * gdb.objc/basicclass.exp: Fix unterminated string. > > --- > gdb/testsuite/gdb.objc/basicclass.exp | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/gdb/testsuite/gdb.objc/basicclass.exp b/gdb/testsuite/gdb.objc/basicclass.exp > index d88655afb5..43b93cdaf9 100644 > --- a/gdb/testsuite/gdb.objc/basicclass.exp > +++ b/gdb/testsuite/gdb.objc/basicclass.exp > @@ -119,7 +119,7 @@ gdb_test continue \ > # Test resetting breakpoints when re-running program > # > gdb_run_cmd > -gdb_test "" "Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$srcfile:.*" "resetting breakpoints when r > +gdb_test "" "Breakpoint \[0-9\]+,.*main .*argc.*argv.* at .*$srcfile:.*" "resetting breakpoints when rerunning" > > # > # Continue until breakpoint (test re-setting breakpoint) >