gcc/gcc/testsuite
Dorit Nuzman 602fea7c26 re PR tree-optimization/30795 (ice for legal code with -ftree-vectorize -O2)
PR tree-optimization/30975
        * tree-vect-trasnform.c (vect_get_vec_def_for_stmt_copy): Remove
        wrong assert.

From-SVN: r122127
2007-02-19 08:46:45 +00:00
..
ada/acats re PR ada/30560 (gnatchop behaves differently dependend on argv[0] -- make check-ada fails) 2007-01-23 17:27:22 +00:00
config
g++.dg re PR c++/30158 (ICE with invalid statement-expressions) 2007-02-15 17:23:35 -08:00
g++.old-deja re PR c++/14622 (type mismatch in explicit template instantiation not detected) 2007-02-12 22:17:06 +00:00
gcc.c-torture re PR middle-end/30433 (no longer folding __complex__(0.0, 1.0) == __complex__(1.0, 0.0)) 2007-02-15 17:27:42 -08:00
gcc.dg re PR tree-optimization/30795 (ice for legal code with -ftree-vectorize -O2) 2007-02-19 08:46:45 +00:00
gcc.misc-tests
gcc.target re PR rtl-optimization/28173 (misses constant folding) 2007-02-19 00:54:29 +00:00
gcc.test-framework
gfortran.dg re PR fortran/30681 ("obsolescent" vs. "obsolete") 2007-02-19 06:52:18 +00:00
gfortran.fortran-torture math.f90: Fix typo. 2007-02-15 06:55:48 +00:00
gnat.dg calls.c (mem_overlaps_already_clobbered_arg_p): Return true for arg pointer based indexed addressing. 2007-02-18 13:52:46 +00:00
lib test_prio_p.adb: Compile with -gnatws. 2007-02-18 13:43:05 +00:00
obj-c++.dg
objc
objc.dg re PR objc/27438 ([unit-at-a-time] '_OBJC_INSTANCE_0' defined but not used warning) 2007-01-23 22:01:09 -08:00
treelang
ChangeLog re PR tree-optimization/30795 (ice for legal code with -ftree-vectorize -O2) 2007-02-19 08:46:45 +00:00
ChangeLog.tree-ssa
README
README.QMTEST
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.