OSDN Git Service

* Makefile.in (start.encap): Do not depend on LIBGCC1.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / README.g++
1 Here are some random last minute notes by this file's original maintainer,
2 Mike Stump <mrs@cygnus.com>:
3
4 > and the command
5
6 >       runtest --tool g++ --srcdir ./testsuite
7
8 > doesn't work.  I got it to work by explicitly setting CXX and CXXFLAGS
9 > on the command line, e.g.
10
11 > runtest --tool g++ --srcdir ./testsuite CXX=g++ CXXFLAGS=""
12
13 site.exp updated to have right CXXFLAGS and CXX, but not at the FSF yet.
14
15
16   To run the tests, first change to the gcc-2.7.1 directory, then type:
17
18         runtest --tool g++ --srcdir ./testsuite
19
20 Here's a brief explanation.
21
22 runtest         - Is the name used to invoke DejaGnu.   If DejaGnu is not
23                   install this will be the relative path name for runtest.
24
25 --tool          - This tells DejaGnu which tool you are testing. It is
26                   mainly used to find the testsuite directories for a
27                   particular tool when several testsuites are in the
28                   same directory. (like the gcc and g++ testsuites)
29
30 --srcdir        - This points to the top level of the directory
31                   containing the sources of the testsuite. This is
32                   ./testsuite if you are in the directory that has the
33                   testsuite directory.