summaryrefslogtreecommitdiff
path: root/gcc/testsuite/README
diff options
context:
space:
mode:
authorgerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-28 17:05:33 +0000
committergerald <gerald@138bc75d-0d04-0410-961f-82ee72b054a4>2003-01-28 17:05:33 +0000
commit6126e5e7073162589ec17b49b46a15cbc65011ef (patch)
tree4ae6afdb4622515c2ae3ee58356871efb669eea8 /gcc/testsuite/README
parent7451966335559dee4de9c28ffd32a074ffa7ae43 (diff)
downloadgcc-6126e5e7073162589ec17b49b46a15cbc65011ef.tar.gz
* README: Move relevant parts from README.g++.
* README.g++: Remove this file. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@61982 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/testsuite/README')
-rw-r--r--gcc/testsuite/README21
1 files changed, 21 insertions, 0 deletions
diff --git a/gcc/testsuite/README b/gcc/testsuite/README
index ff9f9e4c617..5cafb4f59b9 100644
--- a/gcc/testsuite/README
+++ b/gcc/testsuite/README
@@ -48,3 +48,24 @@ DejaGnu drivers. But just because its old, doesn't mean its redundant!
Tests that want to use the normal dg.exp driver can be put in g++.dg instead.
This may be required for platform-specific tests, or tests with other
special requirements.
+
+
+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.