• Home
  • History
  • Annotate
  • only in this directory
NameDateSize

..24-Oct-201435

.distfilesH A D27-Nov-2013742

A01grammar.ztstH A D30-Apr-201111.5 KiB

A02alias.ztstH A D27-Mar-20101,004

A03quoting.ztstH A D26-Nov-20101.5 KiB

A04redirect.ztstH A D27-Nov-201311 KiB

A05execution.ztstH A D02-Jan-20144.7 KiB

A06assign.ztstH A D15-Dec-20126.2 KiB

A07control.ztstH A D31-Aug-20081.8 KiB

B01cd.ztstH A D03-Dec-20115.9 KiB

B02typeset.ztstH A D16-Aug-20129 KiB

B03print.ztstH A D06-Jan-20115.7 KiB

B04read.ztstH A D28-Aug-20111.9 KiB

B05eval.ztstH A D06-Aug-2008561

B06fc.ztstH A D10-Oct-2008223

B07emulate.ztstH A D11-Oct-20125 KiB

C01arith.ztstH A D27-Nov-20135.2 KiB

C02cond.ztstH A D27-Nov-20138.1 KiB

C03traps.ztstH A D15-Dec-20128.5 KiB

C04funcdef.ztstH A D05-Oct-20125.1 KiB

C05debug.ztstH A D03-Jan-20093 KiB

comptestH A D17-Dec-20133.8 KiB

D01prompt.ztstH A D24-Oct-20084.6 KiB

D02glob.ztstH A D16-Dec-201314.5 KiB

D03procsubst.ztstH A D27-Nov-20133 KiB

D04parameter.ztstH A D27-Nov-201331 KiB

D05array.ztstH A D19-Jun-20071.6 KiB

D06subscript.ztstH A D02-Oct-20126.3 KiB

D07multibyte.ztstH A D10-Oct-201011 KiB

D08cmdsubst.ztstH A D18-Sep-20112.2 KiB

D09brace.ztstH A D05-Dec-20102.7 KiB

E01options.ztstH A D06-Dec-201323 KiB

E02xtrace.ztstH A D27-Nov-20133.8 KiB

Makefile.inH A D13-May-20092.1 KiB

READMEH A D05-Aug-2002994

runtests.zshH A D03-Jan-2008758

V01zmodload.ztstH A D27-Nov-20136.8 KiB

V02zregexparse.ztstH A D02-Apr-20017.4 KiB

V03mathfunc.ztstH A D27-Nov-20134 KiB

V04features.ztstH A D11-Aug-20114.4 KiB

V05styles.ztstH A D08-Jun-20074.2 KiB

V06parameter.ztstH A D03-Jan-20091.5 KiB

V07pcre.ztstH A D28-Oct-20112.7 KiB

V08zpty.ztstH A D27-Nov-2013656

X02zlevi.ztstH A D27-Nov-2013390

Y01completion.ztstH A D02-Jan-20141.5 KiB

Y02compmatch.ztstH A D28-Nov-200717.5 KiB

Y03arguments.ztstH A D11-Mar-20043.3 KiB

ztst.zshH A D01-Dec-201113.9 KiB

README

1There are now different sections, expressed by the first letter in the
2scripts names:
3
4 A: basic command parsing and execution
5 B: builtins
6 C: shell commands with special syntax
7 D: substititution
8 E: options
9 V: modules
10 W: builtin interactive commands and constructs
11 X: line editing
12 Y: completion
13 Z: separate systems and user contributions
14
15You will need to run these by using `make test' in the Test subdirectory of
16the build area for your system (which may or may not be the same as the
17Test subdirectory of the source tree), or the directory above.  You can get
18more information about the tests being performed with
19  ZTST_verbose=1 make check
20(`test' is equivalent to `check') or change 1 to 2 for even more detail.
21
22Individual or groups of tests can be performed with
23  make TESTNUM=C02 check
24or
25  make TESTNUM=C check
26to perform just the test beginning C02, or all tests beginning C,
27respectively.
28
29Instructions on how to write tests are given in B01cd.ztst, which acts as a
30model.
31