From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 19295 invoked by alias); 9 Jul 2004 15:49:22 -0000 Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org Received: (qmail 19271 invoked from network); 9 Jul 2004 15:49:20 -0000 Received: from unknown (HELO geburtsjahr.neunzehnhunderteinundachtzig.de) (217.160.92.50) by sourceware.org with SMTP; 9 Jul 2004 15:49:20 -0000 Received: from bauernhof (p54802415.dip.t-dialin.net [84.128.36.21]) by geburtsjahr.neunzehnhunderteinundachtzig.de (Postfix) with ESMTP id 527918FC72; Fri, 9 Jul 2004 17:50:09 +0200 (CEST) Received: from physik.uni-muenchen.de (unknown [192.168.1.6]) by bauernhof (Postfix) with ESMTP id 29A7063151; Fri, 9 Jul 2004 17:48:49 +0200 (CEST) Message-ID: <40EEBE5A.8040804@physik.uni-muenchen.de> Date: Fri, 09 Jul 2004 16:49:00 -0000 From: =?ISO-8859-1?Q?Tobias_Schl=FCter?= User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.6) Gecko/20040506 MIME-Version: 1.0 To: "Billinghurst, David (CALCRTS)" Cc: gcc-patches@gcc.gnu.org, fortran@gcc.gnu.org Subject: Re: gfortran.dg testsuite patch (committed) References: <8ED2FA87C8ACC04192709688DDFD5F5F436344@calttsv025.cal.riotinto.org> <40EEB7D4.4020204@physik.uni-muenchen.de> In-Reply-To: <40EEB7D4.4020204@physik.uni-muenchen.de> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-SW-Source: 2004-07/txt/msg00971.txt.bz2 Paul suggested that I should also allow '.[fF]95' as suffixes, so I chose to use a wildcard again. Verified that the wildcard works, installed as below. - Tobi Index: ChangeLog =================================================================== RCS file: /cvs/gcc/gcc/gcc/testsuite/ChangeLog,v retrieving revision 1.3968 diff -u -r1.3968 ChangeLog --- ChangeLog 9 Jul 2004 15:29:45 -0000 1.3968 +++ ChangeLog 9 Jul 2004 15:46:13 -0000 @@ -1,3 +1,9 @@ +2004-07-09 Tobias Schlueter + Paul Brook + + * gfortran.dg/dg.exp: Use revised wilcard for suffixes, also allow + '.f95' and '.F95'. + 2004-07-09 Diego Novillo * gcc.dg/tree-ssa/20031015-1.c: Adjust expected dump file name. Index: gfortran.dg/dg.exp =================================================================== RCS file: /cvs/gcc/gcc/gcc/testsuite/gfortran.dg/dg.exp,v retrieving revision 1.2 diff -u -r1.2 dg.exp --- gfortran.dg/dg.exp 9 Jul 2004 15:20:43 -0000 1.2 +++ gfortran.dg/dg.exp 9 Jul 2004 15:46:13 -0000 @@ -29,23 +29,12 @@ dg-init # Main loop. -gfortran-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.f ] ]\ - $DEFAULT_FFLAGS +gfortran-dg-runtest [lsort \ + [glob -nocomplain $srcdir/$subdir/*.\[fF\]{,90,95} ] ] $DEFAULT_FFLAGS -gfortran-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.F ] ]\ - $DEFAULT_FFLAGS +gfortran-dg-runtest [lsort \ + [glob -nocomplain $srcdir/$subdir/g77/*.\[fF\] ] ] $DEFAULT_FFLAGS -gfortran-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.f90 ] ]\ - $DEFAULT_FFLAGS - -gfortran-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.F90 ] ]\ - $DEFAULT_FFLAGS - -gfortran-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/g77/*.f ] ] \ - $DEFAULT_FFLAGS - -gfortran-dg-runtest [lsort [glob -nocomplain $srcdir/$subdir/g77/*.F ] ] \ - $DEFAULT_FFLAGS # All done. dg-finish