diff options
author | Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> | 2003-02-02 02:52:15 +0100 |
---|---|---|
committer | Gerald Pfeifer <gerald@gcc.gnu.org> | 2003-02-02 01:52:15 +0000 |
commit | 8cacda7c8bb67fdaa79d428b2fe95fdf0dd5a2f7 (patch) | |
tree | a5e4be12de3a3117006b591a6c72a323642af809 /gcc | |
parent | cbc158bba562eafa6b108434a30de908e65daeb1 (diff) | |
download | gcc-8cacda7c8bb67fdaa79d428b2fe95fdf0dd5a2f7.zip gcc-8cacda7c8bb67fdaa79d428b2fe95fdf0dd5a2f7.tar.gz gcc-8cacda7c8bb67fdaa79d428b2fe95fdf0dd5a2f7.tar.bz2 |
install.texi (Testing): Simplify and compress instructions concerning Dejagnu.
* doc/install.texi (Testing): Simplify and compress instructions
concerning Dejagnu.
From-SVN: r62270
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 5 | ||||
-rw-r--r-- | gcc/doc/install.texi | 26 |
2 files changed, 13 insertions, 18 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index 2c5e688..1c0b2d1 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,8 @@ +2003-02-02 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at> + + * doc/install.texi (Testing): Simplify and compress instructions + concerning Dejagnu. + 2003-02-01 John David Anglin <dave.anglin@nrc-cnrc.gc.ca> * collect2.c (pexecute_pid): Rename to pid. diff --git a/gcc/doc/install.texi b/gcc/doc/install.texi index 8de7792..1916886 100644 --- a/gcc/doc/install.texi +++ b/gcc/doc/install.texi @@ -1227,33 +1227,23 @@ These are part of the full distribution, but if you downloaded the separately. Second, you must have the testing tools installed. This includes -a @uref{http://www.gnu.org/software/dejagnu/,,current version of DejaGnu}; -dejagnu 1.3 is not sufficient. -It also includes Tcl and Expect; the DejaGnu site has links to these. +@uref{http://www.gnu.org/software/dejagnu/,,DejaGnu} 1.4.2 (or later), +Tcl, and Expect; the DejaGnu site has links to these. -Now you may need specific preparations: - -@itemize @bullet - -@item -The following environment variables may need to be set appropriately, as in -the following example (which assumes that DejaGnu has been installed -under @file{/usr/local}): +If the directories where @command{runtest} and @command{expect} were +installed are not in the @env{PATH}, you may need to set the following +environment variables appropriately, as in the following example (which +assumes that DejaGnu has been installed under @file{/usr/local}): @example TCL_LIBRARY = /usr/local/share/tcl8.0 DEJAGNULIBS = /usr/local/share/dejagnu @end example -On systems such as Cygwin, these paths are required to be actual +(On systems such as Cygwin, these paths are required to be actual paths, not mounts or links; presumably this is due to some lack of -portability in the DejaGnu code. - -If the directories where @command{runtest} and @command{expect} were -installed are in the @env{PATH}, it should not be necessary to set these -environment variables. +portability in the DejaGnu code.) -@end itemize Finally, you can run the testsuite (which may take a long time): @example |