From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 28325 invoked by alias); 23 Feb 2016 19:37:45 -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 28308 invoked by uid 89); 23 Feb 2016 19:37:44 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Found: No X-Spam-SWARE-Status: No, score=-1.8 required=5.0 tests=AWL,BAYES_00,RCVD_IN_DNSWL_NONE,SPF_PASS autolearn=ham version=3.3.2 spammy=reappear, 3020, 30,20, 3019 X-HELO: relay1.mentorg.com Received: from relay1.mentorg.com (HELO relay1.mentorg.com) (192.94.38.131) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Tue, 23 Feb 2016 19:37:42 +0000 Received: from svr-orw-fem-03.mgc.mentorg.com ([147.34.97.39]) by relay1.mentorg.com with esmtp id 1aYImB-0004Tl-5c from Luis_Gustavo@mentor.com ; Tue, 23 Feb 2016 11:37:39 -0800 Received: from [172.30.1.130] (147.34.91.1) by svr-orw-fem-03.mgc.mentorg.com (147.34.97.39) with Microsoft SMTP Server id 14.3.224.2; Tue, 23 Feb 2016 11:37:38 -0800 Subject: Re: [PATCH] testsuite: Fix timeout issues during print of vla-arrays. References: <1456152558-3962-1-git-send-email-bernhard.heckel@intel.com> <1456152558-3962-4-git-send-email-bernhard.heckel@intel.com> To: Bernhard Heckel , CC: Reply-To: Luis Machado From: Luis Machado Message-ID: <56CCB4FF.6040803@codesourcery.com> Date: Tue, 23 Feb 2016 19:37:00 -0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:38.0) Gecko/20100101 Thunderbird/38.5.1 MIME-Version: 1.0 In-Reply-To: <1456152558-3962-4-git-send-email-bernhard.heckel@intel.com> Content-Type: text/plain; charset="windows-1252"; format=flowed Content-Transfer-Encoding: 7bit X-IsSubscribed: yes X-SW-Source: 2016-02/txt/msg00695.txt.bz2 On 02/22/2016 11:49 AM, Bernhard Heckel wrote: > From: "bernhard.heckel" > > Printing and resolving of dynamic array's causes sporadic timeout issues on loaded systems. > > 2016-02-12 Bernhard Heckel > > gdb/Changelog: > > * vla-history.exp: Lookup array elements and printing exceeds timeout. > > > Conflicts: > > gdb/testsuite/gdb.fortran/vla-history.exp > gdb/testsuite/gdb.fortran/vla-value.exp > --- > gdb/testsuite/gdb.fortran/vla-history.exp | 17 +++++++++-------- > 1 file changed, 9 insertions(+), 8 deletions(-) > > diff --git a/gdb/testsuite/gdb.fortran/vla-history.exp b/gdb/testsuite/gdb.fortran/vla-history.exp > index 1478e6b..2012961 100644 > --- a/gdb/testsuite/gdb.fortran/vla-history.exp > +++ b/gdb/testsuite/gdb.fortran/vla-history.exp > @@ -30,19 +30,20 @@ gdb_breakpoint [gdb_get_line_number "vla1-init"] > gdb_continue_to_breakpoint "vla1-init" > gdb_test "print vla1" " = " "print non-allocated vla1" > > -gdb_breakpoint [gdb_get_line_number "vla2-allocated"] > -gdb_continue_to_breakpoint "vla2-allocated" > - Is the change above spurious? I see code being moved to higher timeout blocks, but the above doesn't seem to reappear anywhere. It was just deleted. Did it cause problems?