This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: PING: [patch, fortran] PR 27997: Implement F2003-style array constructor with typespec
- From: NightStrike <nightstrike at gmail dot com>
- To: "Jerry DeLisle" <jvdelisle at verizon dot net>
- Cc: "Daniel Kraft" <d at domob dot eu>, "Fortran List" <fortran at gcc dot gnu dot org>
- Date: Sat, 26 Apr 2008 14:46:24 -0400
- Subject: Re: PING: [patch, fortran] PR 27997: Implement F2003-style array constructor with typespec
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; bh=jfRMbJqy95VuoOYKsDgHl8m4fAzfo950SxxLJVkQ1cg=; b=Xldgzm6zdJctcJei7hfpOQBXMVxNtDLgETyrYIfhtdET5CfIezKlbh6qImnlNi2pIfejIsic7OWnYVknj3Crx0wIYbs7PDuxu1skCdEpX+UopZdWkuPelD6xKPbJHjsAUb4GKjxBAdfRzrUE5fUHFBcMcdrYjbsOU9SmexRPLxk=
- Domainkey-signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:content-disposition:references; b=Wsl0jOZ/JWbKDS0glBOTJ8lxUF1rFX3ijPhB4PdNTnJOxTMcIMvc9CqvAJXl8bxBmI4WIhMMmU+jJUIhCTldrMHav5C7DSA1WZ2g/lVCDZ10PDezPPIPNq1FB4Q6wnZdR8hhqwb7WXkLnXzjT1h1Epq65FAmqiDz9PQOQv8NWd4=
- References: <480E2FA1.4050601@domob.eu> <7D6A14EC-3753-4EA1-AFEF-742E186BDEB3@gmail.com> <481367F6.4050900@domob.eu> <48134D30.2050306@verizon.net>
On 4/26/08, Jerry DeLisle <jvdelisle@verizon.net> wrote:
> Daniel Kraft wrote:
> > Hi FX,
> >
> > here's a new version of my patch with (some of) your comments addressed;
> > I'll comment what I changed below.
> >
> > I apologize for some of my prior comments, I did misunderstand some of
> > your points.
> >
> > BTW, is it generally ok to have as many testcases as possible, or is
> > there some "upper limit" on the number you think reasonable for one
> > special feature? And BTW, is there a way to make dejagnu run single
> > tests so I can test my dejagnu-testcase without having to do a full
> > check-gfortran?
> >
> >
> make -k check-fortran RUNTESTFLGS=dg.exp=name_of_test.f90
> or
> make -k check-fortran RUNTESTFLGS=dg.exp=name*
>
> for a group of like named tests. ie wildcard
Just a nit.. I think you have to escape the wildcard so the shell
doesn't interpret it, just in case there are like-named files in the
current directory:
RUNTESTFLAGS="dg.exp=name*"