8sa1-gcc/gcc/testsuite
Manuel López-Ibáñez cb4af25a80 re PR middle-end/7651 (Define -Wextra strictly in terms of other warning flags)
2006-12-23  Manuel Lopez-Ibanez  <manu@gcc.gnu.org>

	PR middle-end/7651
	* c.opt (Wmissing-parameter-type): New.
	* doc/invoke.texi (Wmissing-parameter-type): Document it.
	(Wextra): Enabled by -Wextra.
	* c-opts.c (c_common_post_options): Enabled by -Wextra.
	* c-decl.c (store_parm_decls_oldstyle): Replace Wextra with
	Wmissing-parameter-type.
	
testsuite/

	* gcc.dg/Wmissing-parameter-type.c: New.
	* gcc.dg/Wmissing-parameter-type-Wextra.c: New.
	* gcc.dg/Wmissing-parameter-type-no.c: New.

From-SVN: r120173
2006-12-23 17:45:33 +00:00
..
ada/acats
config
g++.dg re PR c++/30168 (C++ constructors can cause invalid gimple to happen with complex typed variables) 2006-12-21 23:30:55 -08:00
g++.old-deja p11144.C: Renamed id to ID because id is an OjbC keyword. 2006-12-19 00:31:39 +00:00
gcc.c-torture re PR middle-end/30262 (ICE with nested fn accessed var in asm "m" constraint) 2006-12-21 14:13:15 +01:00
gcc.dg re PR middle-end/7651 (Define -Wextra strictly in terms of other warning flags) 2006-12-23 17:45:33 +00:00
gcc.misc-tests
gcc.target i386-cpuid.h (bit_SSSE3): New. 2006-12-15 16:47:39 -08:00
gcc.test-framework sourcebuild.texi (Test Directives): Add output-exists and output-exists-not. 2006-11-07 00:08:32 +00:00
gfortran.dg re PR fortran/25818 ([4.1 only] Problem with handling optional and entry master arguments) 2006-12-22 20:49:00 +00:00
gfortran.fortran-torture re PR fortran/30207 (ICE in gfc_dep_resolver with where (a < 0) a(:) = 1) 2006-12-17 18:28:07 +00:00
gnat.dg tree.c (walk_type_fields): Do not handle TYPE_MIN_VALUE and TYPE_MAX_VALUE for scalar types here but... 2006-12-04 07:47:32 +00:00
lib gcc-dg.exp (gcc-dg-prune): Return "::unsupported::memory full" if the linker on spu-*-* warns about... 2006-12-22 12:05:07 +11:00
obj-c++.dg * obj-c++.dg/const-str-9.mm: Don't run on 64-bit. 2006-11-02 22:01:36 +00:00
objc [multiple changes] 2006-12-13 18:29:26 +01:00
objc.dg struct-layout-encoding-1_generate.c: Xfail some tests for powerpc-darwin and powerpc-aix. 2006-10-07 10:37:50 -07:00
treelang * treelang/compile/var_defs.tree: Adjust. 2006-12-07 16:48:11 +00:00
ChangeLog re PR middle-end/7651 (Define -Wextra strictly in terms of other warning flags) 2006-12-23 17:45:33 +00:00
ChangeLog.tree-ssa
README
README.compat
README.gcc
README.QMTEST

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.