From patchwork Tue Jun 4 21:48:14 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pedro Alves X-Patchwork-Id: 32985 Received: (qmail 128264 invoked by alias); 4 Jun 2019 21:48:35 -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 117462 invoked by uid 89); 4 Jun 2019 21:48:27 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-26.9 required=5.0 tests=BAYES_00, GIT_PATCH_0, GIT_PATCH_1, GIT_PATCH_2, GIT_PATCH_3, RCVD_IN_DNSWL_NONE autolearn=ham version=3.3.1 spammy=FYI, fyi X-HELO: mail-wr1-f67.google.com Received: from mail-wr1-f67.google.com (HELO mail-wr1-f67.google.com) (209.85.221.67) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 04 Jun 2019 21:48:26 +0000 Received: by mail-wr1-f67.google.com with SMTP id d18so17375581wrs.5 for ; Tue, 04 Jun 2019 14:48:17 -0700 (PDT) Return-Path: Received: from ?IPv6:2001:8a0:f913:f700:4eeb:42ff:feef:f164? ([2001:8a0:f913:f700:4eeb:42ff:feef:f164]) by smtp.gmail.com with ESMTPSA id p3sm20094550wrd.47.2019.06.04.14.48.14 (version=TLS1_3 cipher=AEAD-AES128-GCM-SHA256 bits=128/128); Tue, 04 Jun 2019 14:48:15 -0700 (PDT) Subject: Re: [PATCH] Add an objfile getter to gdb.Type To: Tom Tromey , Christian Biesinger via gdb-patches References: <20190523203227.260432-1-cbiesinger@google.com> <20190523213729.27928-1-cbiesinger@google.com> <87k1ea5j2i.fsf@tromey.com> <87muiyla77.fsf@tromey.com> <87d0jtl5dm.fsf@tromey.com> Cc: Christian Biesinger From: Pedro Alves Message-ID: Date: Tue, 4 Jun 2019 22:48:14 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.2.1 MIME-Version: 1.0 In-Reply-To: <87d0jtl5dm.fsf@tromey.com> On 6/4/19 4:47 PM, Tom Tromey wrote: >>>>>> "Christian" == Christian Biesinger via gdb-patches writes: > > Christian> I don't think I'll be writing enough patches for that to be worth it, > Christian> so it would be great if you could commit this. Thanks! > > I checked it in. FYI, I pushed in these fixes to the ChangeLog files. Christian, the issue here is that entry paths are relative to the corresponding ChangeLog file. From d3238f7d90715dad7e8da2a8c2486d26124b0c84 Mon Sep 17 00:00:00 2001 From: Pedro Alves Date: Tue, 4 Jun 2019 22:44:36 +0100 Subject: [PATCH] Fix paths to ChangeLog files --- gdb/ChangeLog | 4 ++-- gdb/doc/ChangeLog | 2 +- gdb/testsuite/ChangeLog | 3 +-- 3 files changed, 4 insertions(+), 5 deletions(-) diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 933f23249ff..e36eae9ac16 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,8 +1,8 @@ 2019-06-04 Christian Biesinger Add objfile property to gdb.Type. - * gdb/NEWS: Mention Python API addition. - * gdb/python/py-type.c (typy_get_objfile): New method. + * NEWS: Mention Python API addition. + * python/py-type.c (typy_get_objfile): New method. 2019-06-03 Philippe Waroquiers diff --git a/gdb/doc/ChangeLog b/gdb/doc/ChangeLog index ea98096845a..5da25996b1c 100644 --- a/gdb/doc/ChangeLog +++ b/gdb/doc/ChangeLog @@ -1,6 +1,6 @@ 2019-06-04 Christian Biesinger - * gdb/doc/python.texi: Document new gdb.Type.objfile property. + * python.texi: Document new gdb.Type.objfile property. 2019-06-03 Philippe Waroquiers diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index af451fa4e12..722249f822c 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,7 +1,6 @@ 2019-06-04 Christian Biesinger - * gdb/testsuite/gdb.python/py-type.exp: Test for new - gdb.Type.objfile property. + * gdb.python/py-type.exp: Test for new gdb.Type.objfile property. 2019-06-03 Philippe Waroquiers