From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19385 invoked by alias); 21 Aug 2016 17:04:02 -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 19368 invoked by uid 89); 21 Aug 2016 17:04:01 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.4 required=5.0 tests=BAYES_00,KAM_LAZY_DOMAIN_SECURITY,RP_MATCHES_RCVD,SPF_HELO_PASS autolearn=no version=3.3.2 spammy= 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 ESMTP; Sun, 21 Aug 2016 17:03:51 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6A6C94E4CA; Sun, 21 Aug 2016 17:03:50 +0000 (UTC) Received: from host1.jankratochvil.net (ovpn-116-34.ams2.redhat.com [10.36.116.34]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id u7LH3kGu010910 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Sun, 21 Aug 2016 13:03:49 -0400 Date: Sun, 21 Aug 2016 17:04:00 -0000 From: Jan Kratochvil To: Bernhard Heckel Cc: "Weinmann, Christoph T" , gdb-patches@sourceware.org Subject: Re: [V4 00/21] Fortran dynamic array support Message-ID: <20160821170346.GA21909@host1.jankratochvil.net> References: <88072818E0A3D742B2B1AF16BBEC65A7263D990E@IRSMSX107.ger.corp.intel.com> <20160714182743.GA10672@host1.jankratochvil.net> <88072818E0A3D742B2B1AF16BBEC65A7263E6F2E@IRSMSX107.ger.corp.intel.com> <20160715091352.GA8059@host1.jankratochvil.net> <88072818E0A3D742B2B1AF16BBEC65A7263E8FD9@IRSMSX107.ger.corp.intel.com> <20160716151310.GA14331@host1.jankratochvil.net> <20160716151837.GA797@host1.jankratochvil.net> <88072818E0A3D742B2B1AF16BBEC65A7263F0988@IRSMSX107.ger.corp.intel.com> <20160816135920.GA26624@host1.jankratochvil.net> <57B6D831.4080605@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <57B6D831.4080605@intel.com> User-Agent: Mutt/1.6.2 (2016-07-01) X-IsSubscribed: yes X-SW-Source: 2016-08/txt/msg00207.txt.bz2 On Fri, 19 Aug 2016 11:58:09 +0200, Bernhard Heckel wrote: > here is the missing patch in your environment. > https://sourceware.org/ml/gdb-patches/2015-01/msg00385.html > This patch handles strides in DWARF and your fortran program. OK, thanks, it does fix: -FAIL: gdb.fortran/dynamic.exp: p varw filled +PASS: gdb.fortran/dynamic.exp: p varw filled -FAIL: gdb.fortran/vla-stride.exp: print odd-elements +PASS: gdb.fortran/vla-stride.exp: print odd-elements -FAIL: gdb.fortran/vla-stride.exp: print last odd-element +PASS: gdb.fortran/vla-stride.exp: print last odd-element Although it regresses: print pvla^M -$7 = (5)^M -(gdb) PASS: gdb.fortran/vla-stride.exp: print single-element +value requires 4294967288 bytes, which is more than max-value-size^M +(gdb) FAIL: gdb.fortran/vla-stride.exp: print single-element -$8 = 5^M -(gdb) PASS: gdb.fortran/vla-stride.exp: print one single-element +Insufficient memory in host GDB for object of size 4294967288 bytes, maximum allowed 536870911 bytes.^M +(gdb) FAIL: gdb.fortran/vla-stride.exp: print one single-element > I will create a branch about all stride patches in the next weeks. That would be probably best, thanks. Jan