From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 20192 invoked by alias); 26 Jan 2007 08:23:25 -0000 Received: (qmail 20177 invoked by uid 22791); 26 Jan 2007 08:23:24 -0000 X-Spam-Check-By: sourceware.org Received: from mx1.redhat.com (HELO mx1.redhat.com) (66.187.233.31) by sourceware.org (qpsmtpd/0.31) with ESMTP; Fri, 26 Jan 2007 08:23:18 +0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.13.1/8.13.1) with ESMTP id l0Q8NGcK010493; Fri, 26 Jan 2007 03:23:16 -0500 Received: from devserv.devel.redhat.com (devserv.devel.redhat.com [172.16.58.1]) by int-mx1.corp.redhat.com (8.13.1/8.13.1) with ESMTP id l0Q8NAXg032739; Fri, 26 Jan 2007 03:23:10 -0500 Received: from devserv.devel.redhat.com (localhost.localdomain [127.0.0.1]) by devserv.devel.redhat.com (8.12.11.20060308/8.12.11) with ESMTP id l0Q8NAKs028221; Fri, 26 Jan 2007 03:23:10 -0500 Received: (from jakub@localhost) by devserv.devel.redhat.com (8.12.11.20060308/8.12.11/Submit) id l0Q8N99Y028219; Fri, 26 Jan 2007 03:23:09 -0500 Date: Fri, 26 Jan 2007 08:23:00 -0000 From: Jakub Jelinek To: Tobias Burnus Cc: Richard Henderson , "fortran@gcc.gnu.org List" , gcc-patches List Subject: Re: [patch, fortran] Support .F03 and .f03 file extensions Message-ID: <20070126082309.GR29911@devserv.devel.redhat.com> Reply-To: Jakub Jelinek References: <459F7DC0.9010409@net-b.de> <45AE67D0.2000604@net-b.de> <45AE6DF1.8020503@net-b.de> <45AE7A43.3090200@net-b.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <45AE7A43.3090200@net-b.de> User-Agent: Mutt/1.4.1i X-IsSubscribed: yes Mailing-List: contact gcc-patches-help@gcc.gnu.org; run by ezmlm Precedence: bulk List-Id: List-Archive: List-Post: List-Help: Sender: gcc-patches-owner@gcc.gnu.org X-SW-Source: 2007-01/txt/msg02173.txt.bz2 On Wed, Jan 17, 2007 at 08:34:27PM +0100, Tobias Burnus wrote: > FX Coudert wrote: > > OK for mainline (and for 4.2 if you backport the .f03 support patch), > > with one detail: I'd also like you to add .f03 to > > libgomp/testsuite/libgomp.fortran/fortran.exp, for consistency. > Attached is the updated patch. libgomp/ 2007-01-17 Tobias Burnus * testsuite/libgomp.fortran/fortran.exp: Support .f03 extension. This is ok for trunk/4.2. Index: libgomp/testsuite/libgomp.fortran/fortran.exp =================================================================== --- libgomp/testsuite/libgomp.fortran/fortran.exp (revision 120865) +++ libgomp/testsuite/libgomp.fortran/fortran.exp (working copy) @@ -10,7 +10,7 @@ if [file exists "${blddir}/${lang_test_file}"] { # Gather a list of all tests. - set tests [lsort [find $srcdir/$subdir *.\[fF\]{,90,95}]] + set tests [lsort [find $srcdir/$subdir *.\[fF\]{,90,95,03}]] # Main loop. gfortran-dg-runtest $tests "" Jakub