1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-10-01 08:21:17 +02:00
zsh/Test
2005-06-17 08:38:51 +00:00
..
.cvsignore
.distfiles
A01grammar.ztst 21131: exit with status 127 when script not found 2005-04-11 10:23:55 +00:00
A02alias.ztst
A03quoting.ztst
A04redirect.ztst Update test for change in error message. 2005-04-16 23:24:54 +00:00
A05execution.ztst
A06assign.ztst Test -nt and FOO=BAR BAR=FOO echo bugs 2005-02-02 17:03:50 +00:00
B01cd.ztst
B02typeset.ztst
B03print.ztst add test for 21352 2005-06-17 08:38:51 +00:00
B04read.ztst Test for fix of read with trailing metacharacters 2005-04-25 10:41:25 +00:00
C01arith.ztst
C02cond.ztst Test -nt and FOO=BAR BAR=FOO echo bugs 2005-02-02 17:03:50 +00:00
C03traps.ztst 21215: clean up after autoloaded trap test 2005-05-01 01:23:54 +00:00
C04funcdef.ztst
comptest
D01prompt.ztst
D02glob.ztst Add [[:IFS:]] etc. tests. 2005-05-09 10:46:08 +00:00
D03procsubst.ztst Belated commit of 21064: test case for 21049 2005-04-14 04:41:25 +00:00
D04parameter.ztst 21194: fix handling of zero-length quoted test strings for patterns 2005-04-26 09:51:27 +00:00
D05array.ztst
D06subscript.ztst
E01options.ztst
E02xtrace.ztst
Makefile.in
README
V01zmodload.ztst 20959: fix crash unloading zsh/parameter and test the fix 2005-03-10 17:55:37 +00:00
V02zregexparse.ztst
V03mathfunc.ztst
Y01completion.ztst
Y02compmatch.ztst
Y03arguments.ztst
ztst.zsh 20698: Fix tail for POSIX conformance 2005-01-13 10:34:17 +00:00

There are now different sections, expressed by the first letter in the
scripts names:

 A: basic command parsing and execution
 B: builtins
 C: shell commands with special syntax
 D: substititution
 E: options
 V: modules
 W: builtin interactive commands and constructs
 X: line editing
 Y: completion
 Z: separate systems and user contributions

You will need to run these by using `make test' in the Test subdirectory of
the build area for your system (which may or may not be the same as the
Test subdirectory of the source tree), or the directory above.  You can get
more information about the tests being performed with
  ZTST_verbose=1 make check
(`test' is equivalent to `check') or change 1 to 2 for even more detail.

Individual or groups of tests can be performed with
  make TESTNUM=C02 check
or
  make TESTNUM=C check
to perform just the test beginning C02, or all tests beginning C,
respectively.

Instructions on how to write tests are given in B01cd.ztst, which acts as a
model.