1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-01 05:16:05 +01:00
zsh/Test
2016-11-03 12:03:24 -07:00
..
.cvsignore
.distfiles
A01grammar.ztst 39625: case needs to reset lastval if no pattern matched 2016-10-13 10:49:02 +01:00
A02alias.ztst
A03quoting.ztst
A04redirect.ztst
A05execution.ztst
A06assign.ztst
A07control.ztst
B01cd.ztst
B02typeset.ztst "typeset -p" uses "export" commands or the "-g" option for parameters that are not local to the current scope 2016-10-24 07:14:39 -07:00
B03print.ztst "typeset -p" uses "export" commands or the "-g" option for parameters that are not local to the current scope 2016-10-24 07:14:39 -07:00
B04read.ztst
B05eval.ztst
B06fc.ztst
B07emulate.ztst
B08shift.ztst
B09hash.ztst
C01arith.ztst
C02cond.ztst 39332: support ksh's [[ -v varname ]] condition for checking if variables are set 2016-09-16 00:00:28 +02:00
C03traps.ztst 39578: Test more ERR_RETURN cases with "&&" and functions 2016-10-06 09:48:48 +01:00
C04funcdef.ztst 39566: Improve usefulness of command_not_found_handler. 2016-10-05 12:14:43 +01:00
C05debug.ztst
comptest
D01prompt.ztst
D02glob.ztst
D03procsubst.ztst
D04parameter.ztst 39815: Read input to end on parse error in $(...) inside a string. 2016-11-03 10:30:00 +00:00
D05array.ztst
D06subscript.ztst
D07multibyte.ztst 39678: metafication of printf %q argument and result 2016-10-19 10:39:58 +01:00
D08cmdsubst.ztst 39777: $() is a valid empty command substitution 2016-10-30 17:12:04 +00:00
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
V08zpty.ztst
V09datetime.ztst
V10private.ztst "typeset -p" uses "export" commands or the "-g" option for parameters that are not local to the current scope 2016-10-24 07:14:39 -07:00
W01history.ztst
X02zlevi.ztst 39824: test case for 39811 (commit ae4c035c) 2016-11-03 12:03:24 -07:00
X03zlebindkey.ztst
Y01completion.ztst 39787: Add a regression test for 39412. 2016-11-01 05:48:55 +00:00
Y02compmatch.ztst
Y03arguments.ztst 39622: add test cases for recent _arguments fixes, exclusion lists and -A/-S 2016-10-13 10:05:18 +02:00
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.