From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 10470 invoked by alias); 23 Oct 2002 01:05:49 -0000 Mailing-List: contact gdb-patches-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sources.redhat.com Received: (qmail 10461 invoked from network); 23 Oct 2002 01:05:47 -0000 Received: from unknown (HELO touchme.toronto.redhat.com) (216.138.202.10) by sources.redhat.com with SMTP; 23 Oct 2002 01:05:47 -0000 Received: from localhost.redhat.com (to-dhcp51.toronto.redhat.com [172.16.14.151]) by touchme.toronto.redhat.com (Postfix) with ESMTP id 3C0ED80007A for ; Tue, 22 Oct 2002 21:05:47 -0400 (EDT) Received: from redhat.com (localhost [127.0.0.1]) by localhost.redhat.com (Postfix) with ESMTP id 4E6F13C40; Tue, 22 Oct 2002 21:05:45 -0400 (EDT) Message-ID: <3DB5F5E9.4090809@redhat.com> Date: Tue, 22 Oct 2002 18:05:00 -0000 From: Andrew Cagney User-Agent: Mozilla/5.0 (X11; U; NetBSD macppc; en-US; rv:1.0.0) Gecko/20020824 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Carlton , Eli Zaretskii Cc: gdb-patches@sources.redhat.com Subject: Re: Patch for gdb/mi 792 References: <3DA753C6.DD6CD4FD@redhat.com> <15796.49177.866732.495080@localhost.redhat.com> <3DB5CD3A.5020904@redhat.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-SW-Source: 2002-10/txt/msg00448.txt.bz2 > On Tue, 22 Oct 2002 18:12:10 -0400, Andrew Cagney said: > > >> Oh, and I suspect you've been hit. It's detected some more C++ >> testsuite filename problems. > > > No, it's the same one that I already fixed a while ago. I'm not sure > why the ARI isn't noticing that; maybe there's a bug in the script? > It seems to me that there is the correct info in fnchange.lst. The ARI script looks like: echo "`date`: Checking for doschk" 1>&2 rm -f "${wwwdir}"/ari.doschk.* fnchange_lst="${srcdir}"/gdb/config/djgpp/fnchange.lst fnchange_sed="${wwwdir}"/ari.doschk.sed # Create fnchange.sed sed -e 's;@[^@]*@[/]*\([^ ]*\) @[^@]*@[/]*\([^ ]*\);s,\1,\2,;' \ < "${fnchange_lst}" > "${fnchange_sed}" # Do the raw analysis ( cd "${srcdir}" && find * \ -name '*.info-[0-9]*' -prune \ -o -name tcl -prune \ -o -name itcl -prune \ -o -name tk -prune \ -o -name libgui -prune \ -o -name tix -prune \ -o -name dejagnu -prune \ -o -name expect -prune \ -o -type f -print ) | sed -f ${fnchange_sed} \ | doschk > ${wwwdir}/ari.doschk.out # Magic to map ari.doschk.out to ari.doschk.bug goes here A quick poke shows it's trying to apply the two transformations: s,gdb/testsuite/gdb.c++,gdb/testsuite/gdb.cxx, ... s,gdb/testsuite/gdb.c++/m-static.cc,gdb/testsuite/gdb.cxx/m-static.cc, s,gdb/testsuite/gdb.c++/m-static1.cc,gdb/testsuite/gdb.cxx/m-stat1.cc, s,gdb/testsuite/gdb.c++/m-static.exp,gdb/testsuite/gdb.cxx/m-static.exp, s,gdb/testsuite/gdb.c++/m-static.h,gdb/testsuite/gdb.cxx/m-static.h, but the actual renames never match since the first s/// resulted in: gdb/testsuite/gdb.cxx/m-static.cc gdb/testsuite/gdb.cxx/m-static.exp gdb/testsuite/gdb.cxx/m-static.h gdb/testsuite/gdb.cxx/m-static1.cc being passed to doschk (see src/contrib). I'm not sure how well this compares to the behavior of the actual DJGPP command. Andrew