gcc/gcc/testsuite
Jakub Jelinek fcf3be37e2 trans-stmt.c (gfc_trans_forall_loop): Clear maskindex before the outermost loop.
* trans-stmt.c (gfc_trans_forall_loop): Clear maskindex before
	the outermost loop.
	(gfc_trans_assign_need_temp, gfc_trans_pointer_assign_need_temp,
	gfc_trans_forall_1, gfc_evaluate_where_mask, gfc_trans_where_2):
	Don't clear maskindexes here.

	* gfortran.fortran-torture/execute/forall_7.f90: New test.

From-SVN: r101865
2005-07-11 09:34:33 +02:00
..
ada/acats Removed, no longer compatible with latest Ada 2005 issues. 2005-06-14 17:07:26 +02:00
config Update FSF address. 2005-06-25 01:45:27 +00:00
consistency.vlad Update FSF address. 2005-06-25 01:45:27 +00:00
g++.dg re PR c++/21799 (Spurious ambiguity with pointers to members) 2005-07-08 11:05:51 +00:00
g++.old-deja Update FSF address. 2005-06-25 01:45:27 +00:00
gcc.c-torture tree-ssa-dce.c (cfg_altered): New global. 2005-07-05 23:25:57 -06:00
gcc.dg Makefile.in (tree-ssa-alias.o): Depend on tree-ssa-structalias.h 2005-07-09 20:28:01 -04:00
gcc.misc-tests Update FSF address. 2005-06-25 01:45:27 +00:00
gcc.target mips.exp (is_gp32_flag): New procedure. 2005-07-10 09:40:11 +00:00
gcc.test-framework Update FSF address. 2005-06-25 01:45:27 +00:00
gfortran.dg PR libfortran/21875 (FM111.f) 2005-07-09 23:40:31 +00:00
gfortran.fortran-torture trans-stmt.c (gfc_trans_forall_loop): Clear maskindex before the outermost loop. 2005-07-11 09:34:33 +02:00
lib alpha.c (emit_insxl, [...]): New functions. 2005-07-09 11:28:23 -07:00
obj-c++.dg objc-act.c (objc_build_struct): Pass in an actual @interface instead of its name... 2005-07-08 01:53:37 +00:00
objc Update FSF address. 2005-06-25 01:45:27 +00:00
objc.dg objc-act.c (objc_build_struct): Pass in an actual @interface instead of its name... 2005-07-08 01:53:37 +00:00
treelang Update FSF address 2005-06-28 00:56:07 +00:00
ChangeLog trans-stmt.c (gfc_trans_forall_loop): Clear maskindex before the outermost loop. 2005-07-11 09:34:33 +02:00
ChangeLog.tree-ssa
README README: Update the DejaGnu bug reporting address. 2005-02-28 16:28:47 +11:00
README.QMTEST * README.QMTEST: Fix out-of-date link. 2004-09-03 05:58:19 +00:00
README.compat
README.gcc

README

This is a collection of tests for GCC. For further information about
the C testsuite, see README.gcc.

The driver that runs this testsuite is called DejaGnu and you will
need a current DejaGnu snapshot, which is available from
ftp://gcc.gnu.org/pub/gcc/infrastructure, for example.

These tests are included "as is". If any of them fails, do not report
a bug.  Bug reports for DejaGnu can go to bug-dejagnu@gnu.org.
Discussion and comments about this testsuite should be sent to
gcc@gcc.gnu.org; additions and changes to should go to sent to
gcc-patches@gcc.gnu.org.

The entire testsuite is invoked by `make check` at the top level of
the GCC tree. `make check-g++` runs the C++ testsuite only.

STRUCTURE OF THE G++ TESTSUITE

  g++.dg tests:

  All new tests should be placed in an appropriate subdirectory of g++.dg.

  g++.old-deja tests:

  g++.benjamin	Tests by Benjamin Koz
  g++.bob
  g++.brendan	Tests by Brendan Kehoe
  g++.bugs
  g++.eh  	Tests for exception handling
  g++.ext  	Tests for g++ extensions
  g++.gb  	Tests by Gerald Baumgartner
  g++.jason	Tests by Jason Merill
  g++.jeff	Tests by Jeffrey A Law
  g++.martin	Tests by Martin v. Löwis
  g++.mike	Tests by Mike Stump
  g++.niklas	Tests by Niklas Hallqvist
  g++.ns  	Tests for namespaces
  g++.other
  g++.pt  	Tests for templates
  g++.rfg
  g++.robertl	Tests from gcc-bugs@gcc.gnu.org, gathered by Robert Lipe
	
Finally, some random last minute notes by Mike Stump <mrs@cygnus.com>, on
how to run tests (in the GCC 2.7 era):

	runtest --tool g++ --srcdir ./testsuite

where 

	runtest	Is the name used to invoke DejaGnu.   If DejaGnu is not
		install this will be the relative path name for runtest.

	--tool	This tells DejaGnu which tool you are testing. It is
		mainly used to find the testsuite directories for a
		particular tool when several testsuites are in the
		same directory. (like the gcc and g++ testsuites)

	--srcdir This points to the top level of the directory
		containing the sources of the testsuite. This is
		./testsuite if you are in the directory that has the
		testsuite directory.