1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-09-21 04:11:13 +02:00

update for test file renaming and fix typos

This commit is contained in:
Oliver Kiddle 2001-06-28 11:25:41 +00:00
parent 45c1cee848
commit a25c40c6a0
3 changed files with 6 additions and 4 deletions

View file

@ -1,5 +1,7 @@
2001-06-28 Oliver Kiddle <opk@zsh.org> 2001-06-28 Oliver Kiddle <opk@zsh.org>
* unposted: Etc/zsh-development-guide, Test/B01cd.ztst: fix typos
* 15159: Completion/X/Command/_vnc: fix for two digit display numbers, * 15159: Completion/X/Command/_vnc: fix for two digit display numbers,
use _values for -encodings option and complete for xvncviewer use _values for -encodings option and complete for xvncviewer

View file

@ -64,7 +64,7 @@ Testing
a wide range of human and artificial life, it is very difficult to a wide range of human and artificial life, it is very difficult to
test the shell thoroughly. For this purpose, the Test subdirectory test the shell thoroughly. For this purpose, the Test subdirectory
exists. It consists of a driver script (ztst.zsh) and various test exists. It consists of a driver script (ztst.zsh) and various test
files (*.ztst) in a format which is described in 50cd.ztst, which acts files (*.ztst) in a format which is described in B01cd.ztst, which acts
as a template. It is designed to make it easy to provide input to as a template. It is designed to make it easy to provide input to
chunks of shell code and to test the corresponding standard output, chunks of shell code and to test the corresponding standard output,
error output and exit status. error output and exit status.

View file

@ -1,5 +1,5 @@
# This file serves as a model for how to write tests, so is more heavily # This file serves as a model for how to write tests, so is more heavily
# commented that the others. All tests are run in the Test subdirectory # commented than the others. All tests are run in the Test subdirectory
# of the distribution, which must be writable. They should end with # of the distribution, which must be writable. They should end with
# the suffix `.ztst': this is not required by the test harness itself, # the suffix `.ztst': this is not required by the test harness itself,
# but it is needed by the Makefile to run all the tests. # but it is needed by the Makefile to run all the tests.
@ -54,7 +54,7 @@
# #
# The rules for '<', '>' and '?' lines are the same: only the first # The rules for '<', '>' and '?' lines are the same: only the first
# character is stripped, with subsequent whitespace being significant; # character is stripped, with subsequent whitespace being significant;
# lines are not subject to any substitution unless the `q' flags (see # lines are not subject to any substitution unless the `q' flag (see
# below) is set. # below) is set.
# #
# Each chunk of indented code is to be evaluated in one go and is to # Each chunk of indented code is to be evaluated in one go and is to
@ -63,7 +63,7 @@
# irrelevant. An optional set of single-letter flags follows the status # irrelevant. An optional set of single-letter flags follows the status
# or -. The following are understood: # or -. The following are understood:
# d Don't diff stdout against the expected stdout. # d Don't diff stdout against the expected stdout.
# D Don't diff stderr agsinst the expected stderr. # D Don't diff stderr against the expected stderr.
# q All redirection lines given in the test script (not the lines # q All redirection lines given in the test script (not the lines
# actually produced by the test) are subject to ordinary quoted shell # actually produced by the test) are subject to ordinary quoted shell
# expansion (i.e. not globbing). # expansion (i.e. not globbing).