diff options
author | Ben Elliston <bje@gnu.org> | 2011-03-14 18:02:36 +1100 |
---|---|---|
committer | Ben Elliston <bje@gnu.org> | 2011-03-14 18:02:36 +1100 |
commit | bb9877bf6670172454b3874f2a10e5f331ffa2e4 (patch) | |
tree | a5f93aadbeffb403636d2bcb9d5554400f15b97d /doc/dejagnu.texi | |
parent | 0d8a42bc09eed10b1774906fec50a0ba717cd640 (diff) | |
download | dejagnu-bb9877bf6670172454b3874f2a10e5f331ffa2e4.zip dejagnu-bb9877bf6670172454b3874f2a10e5f331ffa2e4.tar.gz dejagnu-bb9877bf6670172454b3874f2a10e5f331ffa2e4.tar.bz2 |
Reported by Flash Sheridan <flash@pobox.com>:
* doc/user.xml (Testing "Hello world" locally): Improve the
example test script and make it robust to failures. Tidy some
formatting errors.
* doc/dejagnu.texi: Regenerate.
Diffstat (limited to 'doc/dejagnu.texi')
-rw-r--r-- | doc/dejagnu.texi | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/doc/dejagnu.texi b/doc/dejagnu.texi index 6c719c8..1e3cf7d 100644 --- a/doc/dejagnu.texi +++ b/doc/dejagnu.texi @@ -446,19 +446,17 @@ Follow these instructions as closely a possible in order get a good insight into how DejaGnu works, else you might run into a lot of subtle problems. You have been warned. -It should be no big problems installing DejaGnu using your -package manager or from the source code. Under a Debian/GNU/Linux -systems just type (as root) +It should be no big problems installing DejaGnu using your package +manager or from the source code. On the Debian GNU/Linux system just +run (as root): @example -apt-get install -dejagnu +apt-get install dejagnu @end example @noindent -. These examples were run on a primary machine -with a AMD K6 and a Mac Powerbook G3 serving as a remote -target. +These examples were run on a primary machine with a AMD K6 and a Mac +Powerbook G3 serving as a remote target. The tests for Windows were run under Windows using the actual Cygwin version (1.3.x as of October 2001). Its target system was a PPC @@ -924,19 +922,21 @@ set verbose 9 @node Testing "Hello world" locally, , When trouble strikes, Our first automated tests @subsection Testing "Hello world" locally -This test checks, whether the built-in shell command "echo Hello world" -will really write "Hello world" on the console. -Create the file ~/dejagnu.test/testsuite/calc.test/local_echo.exp. -It should contain the following lines +This test checks whether the shell command @code{echo Hello +world} will really output "Hello world" to the +console. Create the file +@file{~/dejagnu.test/testsuite/calc.test/local_echo.exp}. +It should contain the following lines: @strong{A first (local) test case} @example set test "Local Hello World" -send "echo Hello World" +spawn echo Hello World expect @{ - -re "Hello World" @{ pass "$test" @} + "Hello World" @{ pass $test @} + default @{ fail $test @} @} @end example |