From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 107040 invoked by alias); 6 Dec 2018 15:03:07 -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 107023 invoked by uid 89); 6 Dec 2018 15:03:06 -0000 Authentication-Results: sourceware.org; auth=none X-Spam-SWARE-Status: No, score=-1.9 required=5.0 tests=BAYES_00,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,SPF_PASS,TIME_LIMIT_EXCEEDED autolearn=unavailable version=3.3.2 spammy=ifort X-HELO: EUR04-DB3-obe.outbound.protection.outlook.com Received: from mail-eopbgr60065.outbound.protection.outlook.com (HELO EUR04-DB3-obe.outbound.protection.outlook.com) (40.107.6.65) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 06 Dec 2018 15:02:56 +0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=armh.onmicrosoft.com; s=selector1-arm-com; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-SenderADCheck; bh=ttOAy3qsAB0tkfMnZUE7XcjeS7xWJvGrCUXQ02ltn8g=; b=EkF8pOugP5D5dU7kremy5sYtz4VrLdPENLXMKVnZLZ6EF+wmK1LIPKQKMv4oNm0Mg/oC3GXF2Xtdmh60kcijf8lz3sfim7vh3XfOUYmYg+1v9vbDM2tAqFZ1mWWYqwkmpV/AacW0wTjdGPOdw4EOGNTOdDxkpXMivEjaLwpd7Jg= Received: from VI1PR08MB3200.eurprd08.prod.outlook.com (52.133.15.152) by VI1PR08MB2861.eurprd08.prod.outlook.com (10.170.236.161) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.20.1404.17; Thu, 6 Dec 2018 15:02:52 +0000 Received: from VI1PR08MB3200.eurprd08.prod.outlook.com ([fe80::d1bd:f969:ee71:2ecc]) by VI1PR08MB3200.eurprd08.prod.outlook.com ([fe80::d1bd:f969:ee71:2ecc%4]) with mapi id 15.20.1404.021; Thu, 6 Dec 2018 15:02:52 +0000 From: Richard Bunt To: =?iso-8859-2?Q?Pawe=B3_W=F3dkowski?= , "gdb-patches@sourceware.org" CC: nd Subject: Re: [PATCH v2 3/7] Fortran: Accessing fields of inherited types via fully qualified name. Date: Thu, 06 Dec 2018 15:03:00 -0000 Message-ID: <687ae24a-511f-1d32-025d-3c1e996a8e28@arm.com> References: <1542663530-140490-1-git-send-email-pwodkowski@pl.sii.eu> <1542663530-140490-3-git-send-email-pwodkowski@pl.sii.eu> <88ec6786-8834-7da2-207a-7392fd657e41@arm.com> <53cac622aea64147b2c1cd25feb16bdd@pl.sii.eu> In-Reply-To: <53cac622aea64147b2c1cd25feb16bdd@pl.sii.eu> authentication-results: spf=none (sender IP is ) smtp.mailfrom=Richard.Bunt@arm.com; received-spf: None (protection.outlook.com: arm.com does not designate permitted sender hosts) Content-Type: text/plain; charset="iso-8859-2" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-IsSubscribed: yes X-SW-Source: 2018-12/txt/msg00068.txt.bz2 Hi Pawe=B3, I was testing with gfortran 7.3.0 and ifort 18.2. On the latter I observe 2 kfails relating to the missing extends in the ptype output. However, this is because I do not have patch 4 applied. I will take a closer look at this patch with ifort 18.2 since I can analyze the implementation in action. On 12/4/18 9:05 PM, Pawe=B3 W=F3dkowski wrote: >>> +gdb_test "whatis wp_vla" "type =3D " A small nit while I'm here: GDB tests needs to be uniquely identifiable, see https://sourceware.org/gdb= /wiki/GDBTestcaseCookbook#Make_sure_test_messages_are_unique 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: continue to breakpoint= : ! After value assignment 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: continue to breakpoint= : ! Before vla allocation 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: ptype wp%point%coo 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: ptype wp_vla(1)%point%= coo 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: p wp 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: p wp%point 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: p wp%point%coo 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: p wp_vla(1) 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: p wp_vla(1)%point 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: p wp_vla(1)%point%coo 1 (gdb) PASS: gdb.fortran/oop-extend-type.exp: whatis wp 2 (gdb) PASS: gdb.fortran/oop-extend-type.exp: whatis wp_vla Many thanks, Rich.