From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 96368 invoked by alias); 20 Dec 2019 05:29:18 -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 96358 invoked by uid 89); 20 Dec 2019 05:29:18 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-17.2 required=5.0 tests=AWL,BAYES_00,GIT_PATCH_0,GIT_PATCH_1,GIT_PATCH_2,GIT_PATCH_3,KAM_NUMSUBJECT,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.1 spammy= X-HELO: rock.gnat.com Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Fri, 20 Dec 2019 05:29:16 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id E21D856056; Fri, 20 Dec 2019 00:29:14 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id JJrorFyu8NIb; Fri, 20 Dec 2019 00:29:14 -0500 (EST) Received: from joel.gnat.com (localhost.localdomain [127.0.0.1]) by rock.gnat.com (Postfix) with ESMTP id 7BD5556053; Fri, 20 Dec 2019 00:29:14 -0500 (EST) Received: by joel.gnat.com (Postfix, from userid 1000) id 1F7B4899B7; Fri, 20 Dec 2019 09:29:10 +0400 (+04) Date: Fri, 20 Dec 2019 05:29:00 -0000 From: Joel Brobecker To: Simon Marchi Cc: gdb-patches@sourceware.org Subject: Re: [pushed] Update gdb.base/default.exp for GDB 10 Message-ID: <20191220052910.GA13665@adacore.com> References: <20191218214658.8437-1-simon.marchi@efficios.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20191218214658.8437-1-simon.marchi@efficios.com> User-Agent: Mutt/1.9.4 (2018-02-28) X-SW-Source: 2019-12/txt/msg00846.txt.bz2 > Now that the version number in master has been bumped to 10, I get this > failure: > > FAIL: gdb.base/default.exp: show convenience ($_gdb_major = 9 not found) > > Update the test accordingly. Grumpf. Sorry about that, Simon. I need to update my scripts to deal with that. I will put that on my list. > gdb/testsuite/ChangeLog: > > * gdb.base/default.exp: Update value of $_gdb_major. > --- > gdb/testsuite/ChangeLog | 4 ++++ > gdb/testsuite/gdb.base/default.exp | 2 +- > 2 files changed, 5 insertions(+), 1 deletion(-) > > diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog > index 01f6fdf37b2e..1079e71c84c0 100644 > --- a/gdb/testsuite/ChangeLog > +++ b/gdb/testsuite/ChangeLog > @@ -1,3 +1,7 @@ > +2019-12-18 Simon Marchi > + > + * gdb.base/default.exp: Update value of $_gdb_major. > + > 2019-12-17 Bernd Edlinger > > * gdb.base/skip.exp: Fix test failure observed with gcc-9.2.0. > diff --git a/gdb/testsuite/gdb.base/default.exp b/gdb/testsuite/gdb.base/default.exp > index c323060d9ab9..25e5e661bb58 100644 > --- a/gdb/testsuite/gdb.base/default.exp > +++ b/gdb/testsuite/gdb.base/default.exp > @@ -608,7 +608,7 @@ set show_conv_list \ > {$_gdb_maint_setting = } \ > {$_gdb_setting_str = } \ > {$_gdb_setting = } \ > - {$_gdb_major = 9} \ > + {$_gdb_major = 10} \ > {$_gdb_minor = 1} \ > {$_shell_exitsignal = void} \ > {$_shell_exitcode = 0} \ > -- > 2.24.1 -- Joel