From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 15275 invoked by alias); 22 Jul 2013 20:25:15 -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 15245 invoked by uid 89); 22 Jul 2013 20:25:14 -0000 X-Spam-SWARE-Status: No, score=-5.9 required=5.0 tests=AWL,BAYES_00,RCVD_IN_HOSTKARMA_W,RCVD_IN_HOSTKARMA_WL,RDNS_NONE,SPF_HELO_PASS,SPF_PASS autolearn=no version=3.3.1 Received: from Unknown (HELO mx1.redhat.com) (209.132.183.28) by sourceware.org (qpsmtpd/0.84/v0.84-167-ge50287c) with ESMTP; Mon, 22 Jul 2013 20:25:13 +0000 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id r6MKP6RV030977 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 22 Jul 2013 16:25:06 -0400 Received: from host2.jankratochvil.net (ovpn-116-19.ams2.redhat.com [10.36.116.19]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id r6MKP2iN031157 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES128-SHA bits=128 verify=NO); Mon, 22 Jul 2013 16:25:05 -0400 Date: Mon, 22 Jul 2013 20:25:00 -0000 From: Jan Kratochvil To: Tom Tromey Cc: gdb-patches@sourceware.org Subject: Regression for fission-reread.exp and pr13961.exp [Re: [PATCH 2/3] fix init_cutu_and_read_dies] Message-ID: <20130722202502.GA23963@host2.jankratochvil.net> References: <1371584669-1687-1-git-send-email-tromey@redhat.com> <1371584669-1687-3-git-send-email-tromey@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1371584669-1687-3-git-send-email-tromey@redhat.com> User-Agent: Mutt/1.5.21 (2010-09-15) X-IsSubscribed: yes X-SW-Source: 2013-07/txt/msg00515.txt.bz2 On Tue, 18 Jun 2013 21:44:28 +0200, Tom Tromey wrote: > * dwarf2read.c (init_cutu_and_read_dies): Remove 'free_cu_cleanup'. > Simplify cleanup handling. 97b6b07c3c5847caf456f267f16b5752ac8cc7c6 is the first bad commit commit 97b6b07c3c5847caf456f267f16b5752ac8cc7c6 Author: Tom Tromey Date: Mon Jul 22 17:58:51 2013 +0000 fix init_cutu_and_read_dies This seems unrelated to Runtime regression for gdb.base/reread.exp & co. [Re: [RFA] Remove target_section.bfd] http://sourceware.org/ml/gdb-patches/2013-07/msg00443.html although the affected testcases look similar. Even with pure FSF GDB HEAD I get regression for: Running gdb/testsuite/gdb.dwarf2/fission-reread.exp ... -PASS: gdb.dwarf2/fission-reread.exp: break main +ERROR: Couldn't load /unsafegdb/testsuite.unix.-m64/gdb.dwarf2/fission-reread into /unsafegdb/testsuite.unix.-m64/../../gdb/gdb (eof). +ERROR: Couldn't send break main to GDB. +UNRESOLVED: gdb.dwarf2/fission-reread.exp: break main PASS: gdb.dwarf2/fission-reread.exp: fission-reread -PASS: gdb.dwarf2/fission-reread.exp: fission-reread - unload +ERROR: couldn't unload file in /unsafegdb/testsuite.unix.-m64/../../gdb/gdb (timeout). +UNRESOLVED: gdb.dwarf2/fission-reread.exp: fission-reread - unload Running gdb/testsuite/gdb.dwarf2/pr13961.exp ... -PASS: gdb.dwarf2/pr13961.exp: break main +ERROR: Couldn't load /unsafegdb/testsuite.unix.-m64/gdb.dwarf2/pr13961 into /unsafegdb/testsuite.unix.-m64/../../gdb/gdb (eof). +ERROR: Couldn't send break main to GDB. +UNRESOLVED: gdb.dwarf2/pr13961.exp: break main PASS: gdb.dwarf2/pr13961.exp: pr13961 on Fedora 19 x86_64/x86_64-m32/i686 with -lmcheck, I did not try other OSes/configurations. Jan