1
0
mirror of git://git.code.sf.net/p/zsh/code synced 2024-09-28 23:11:20 +02:00
zsh/Test
Peter Stephenson fb3ad98f71 31141: Tighten NO_CLOBBER restrictions on {fd} syntax
to apply only if $fd is exactly an fd and nothing else.
2013-03-10 21:45:04 +00:00
..
.cvsignore
.distfiles unposted: 4.3.16 2012-02-19 19:33:19 +00:00
A01grammar.ztst
A02alias.ztst
A03quoting.ztst
A04redirect.ztst 31141: Tighten NO_CLOBBER restrictions on {fd} syntax 2013-03-10 21:45:04 +00:00
A05execution.ztst
A06assign.ztst 30876: fix obscure failures to propagate non-zero status 2012-12-13 10:36:59 +00:00
A07control.ztst
B01cd.ztst
B02typeset.ztst 30169: repeat "typeset -T" with same two first arguments is not an error 2012-08-16 14:00:11 +00:00
B03print.ztst
B04read.ztst
B05eval.ztst
B06fc.ztst
B07emulate.ztst 30726: make shell options passed to emulate stick along with the emulation 2012-10-11 20:14:01 +00:00
C01arith.ztst users/17665: add FORCE_FLOAT option 2013-03-05 20:04:53 +00:00
C02cond.ztst 30270: don't need errors when testing to see if mtime test will work 2012-02-26 18:54:52 +00:00
C03traps.ztst 30876: fix obscure failures to propagate non-zero status 2012-12-13 10:36:59 +00:00
C04funcdef.ztst 30718: emulate command evaluations should apply sticky emulation 2012-10-07 17:50:18 +00:00
C05debug.ztst
comptest 31041: add support for testing line editor widgets from the test suite 2013-02-12 10:55:32 +00:00
D01prompt.ztst
D02glob.ztst
D03procsubst.ztst this prevent process-based features from working in their arguments 2012-12-21 11:28:33 +00:00
D04parameter.ztst 30993: fix parameter modifier crash with :wq on empty string 2013-01-22 16:28:58 +00:00
D05array.ztst
D06subscript.ztst users/17310: we can't treat < after [ as a normal character. 2012-10-03 18:11:12 +00:00
D07multibyte.ztst
D08cmdsubst.ztst
D09brace.ztst
E01options.ztst
E02xtrace.ztst
Makefile.in
README
runtests.zsh
V01zmodload.ztst
V02zregexparse.ztst
V03mathfunc.ztst
V04features.ztst
V05styles.ztst
V06parameter.ztst
V07pcre.ztst
X02zlevi.ztst 31041: add support for testing line editor widgets from the test suite 2013-02-12 10:55:32 +00:00
Y01completion.ztst
Y02compmatch.ztst
Y03arguments.ztst
ztst.zsh

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.