This is the mail archive of the
fortran@gcc.gnu.org
mailing list for the GNU Fortran project.
Re: [gomp merge] Fortran FE changes from gomp branch not dependent on OpenMP
- From: Jakub Jelinek <jakub at redhat dot com>
- To: Tobias Schlueter <tobias dot schlueter at physik dot uni-muenchen dot de>
- Cc: gcc-patches at gcc dot gnu dot org, fortran at gcc dot gnu dot org
- Date: Wed, 25 Jan 2006 17:18:54 -0500
- Subject: Re: [gomp merge] Fortran FE changes from gomp branch not dependent on OpenMP
- References: <20060117084832.GH7768@devserv.devel.redhat.com> <43D7F811.3060105@physik.uni-muenchen.de>
- Reply-to: Jakub Jelinek <jakub at redhat dot com>
On Wed, Jan 25, 2006 at 11:13:37PM +0100, Tobias Schl?ter wrote:
> Jakub Jelinek wrote:
> > This patch contains changes from gomp branch that don't rely on
> > OpenMP framework, two comment typos and code to make sure array times have
> > complete types whenever possible. For details, you can see:
> > http://gcc.gnu.org/ml/gcc-patches/2005-10/msg01299.html
> > http://gcc.gnu.org/ml/gcc-patches/2005-11/msg00361.html
> > http://gcc.gnu.org/ml/gcc-patches/2005-11/msg00447.html
> > http://gcc.gnu.org/ml/gcc-patches/2005-12/msg00332.html
> > Bootstrapped/regtested on i686-linux, ok for trunk?
>
> I have one question: will the testsuite for the Fortran parts of gomp be run
> with make check-fortran? This would make sure that we don't accidentally
> break any of the gomp parts when following the testing procedure for frontends.
There are 2 parts. One, gfortran.dg/gomp/gomp.exp contains only
compile time tests and is run with make check-fortran.
The rest are runtime tests, which need libgomp, so they are part of
libgomp's testsuite.
So, on gomp-20050608-branch if you want to run all Fortran tests, including
OpenMP runtime ones (and no C/C++/etc. tests), you run
make -C gcc -k check-gfortran; make -C libgomp -k check RUNTESTFLAGS=fortran.exp
Jakub