1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-02-05 16:51:18 +01:00
zsh/Test
2014-12-07 16:31:48 +09:00
..
.cvsignore
.distfiles 33047: use git to simplify massively source distribution file selection 2014-08-23 21:01:58 +01:00
A01grammar.ztst
A02alias.ztst
A03quoting.ztst
A04redirect.ztst 33294: $functions[func_with_redir] plus extra tests 2014-09-30 12:58:52 +01:00
A05execution.ztst 33564: care with monitor option in test 2014-10-26 21:24:23 +00:00
A06assign.ztst 33816, 33819: GLOB_ASSIGN changes integer and floating type variables to string scalars 2014-11-28 13:30:22 -08:00
A07control.ztst 32711: run "continue" test in a new shell 2014-06-04 22:50:48 -07:00
B01cd.ztst
B02typeset.ztst
B03print.ztst
B04read.ztst
B05eval.ztst
B06fc.ztst 33686: set PS1 before pattern-matching for it 2014-11-13 09:27:14 -08:00
B07emulate.ztst
B08shift.ztst 32246: option "shift -p" pops arguments from end of array 2014-01-11 19:31:29 +00:00
C01arith.ztst unposted: test binary input using 0b 2014-11-26 20:58:36 +00:00
C02cond.ztst 32609: [[ $var ]] behaves as [[ -n $var ]] for bash/ksh compatibility 2014-05-13 08:16:50 -07:00
C03traps.ztst
C04funcdef.ztst 33345: fix anonymous function complex command handling. 2014-10-03 16:29:56 +01:00
C05debug.ztst
comptest 33829: unbind ESC~ as a more reliable workaround 2014-12-07 16:31:48 +09:00
D01prompt.ztst
D02glob.ztst users/19059 based on users/19058: remove ineffiency with multiple * matches 2014-09-08 16:38:51 +01:00
D03procsubst.ztst
D04parameter.ztst Treat exec from subshell as if forked 2014-11-02 15:29:06 +00:00
D05array.ztst
D06subscript.ztst
D07multibyte.ztst
D08cmdsubst.ztst
D09brace.ztst users/18298 (tidied up): add {<char>..<char>} expansion 2014-01-09 10:05:13 +00:00
E01options.ztst 32768 with further modifications: LOCAL_LOOPS option. 2014-06-13 21:39:44 +01:00
E02xtrace.ztst 31810: tests for simple XTRACE output from conditions 2013-10-10 17:45:42 +01:00
Makefile.in
README
runtests.zsh
V01zmodload.ztst 31805: Add $patchars and $dis_patchars to zsh/parameter module 2013-10-11 14:57:57 +02:00
V02zregexparse.ztst
V03mathfunc.ztst 31902: rationalise use of gamma function. 2013-10-27 00:00:56 +01:00
V04features.ztst
V05styles.ztst
V06parameter.ztst
V07pcre.ztst 33122: typo from 32891 caused incorrect matches for pcre_match -n 2014-09-07 10:48:32 -07:00
V08zpty.ztst
X02zlevi.ztst 33829: unbind ESC~ as a more reliable workaround 2014-12-07 16:31:48 +09:00
Y01completion.ztst unposted: move path assignment from comptest to Y01completion.ztst 2013-12-26 16:04:30 -08:00
Y02compmatch.ztst
Y03arguments.ztst
ztst.zsh 32768 with further modifications: LOCAL_LOOPS option. 2014-06-13 21:39:44 +01: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.