• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.distfilesH A D04-Dec-201718 32

A01grammar.ztstH A D12-Feb-202218.1 KiB935824

A02alias.ztstH A D13-Dec-20193.4 KiB151128

A03quoting.ztstH A D04-Dec-20171.7 KiB8675

A04redirect.ztstH A D12-Feb-202215.8 KiB711630

A05execution.ztstH A D12-Feb-20229.5 KiB397353

A06assign.ztstH A D13-Nov-201811 KiB733618

A07control.ztstH A D04-Dec-20172.8 KiB166147

B01cd.ztstH A D12-Feb-20227 KiB157144

B02typeset.ztstH A D12-Feb-202223.8 KiB1,1111,020

B03print.ztstH A D12-Feb-20227 KiB348275

B04read.ztstH A D04-Dec-20171.9 KiB11393

B05eval.ztstH A D04-Dec-2017561 3527

B06fc.ztstH A D04-Dec-2017716 2620

B07emulate.ztstH A D12-Feb-20225.6 KiB279256

B08shift.ztstH A D04-Dec-2017667 3430

B09hash.ztstH A D04-Dec-20171.8 KiB8067

B10getopts.ztstH A D12-Feb-20221.7 KiB9976

C01arith.ztstH A D12-Feb-202210.1 KiB490416

C02cond.ztstH A D12-Feb-202211.5 KiB469393

C03traps.ztstH A D03-Feb-202017.4 KiB914833

C04funcdef.ztstH A D12-Feb-202212.8 KiB615557

C05debug.ztstH A D04-Dec-20173 KiB160147

D01prompt.ztstH A D12-Feb-20225.5 KiB232214

D02glob.ztstH A D12-Feb-202220.7 KiB753689

D03procsubst.ztstH A D12-Feb-20223.9 KiB159140

D04parameter.ztstH A D12-Feb-202252 KiB2,6532,427

D05array.ztstH A D04-Dec-20171.6 KiB11389

D06subscript.ztstH A D12-Feb-20227.4 KiB292253

D07multibyte.ztstH A D12-Feb-202214.2 KiB588540

D08cmdsubst.ztstH A D13-Dec-20193.6 KiB180153

D09brace.ztstH A D04-Dec-20173.4 KiB11988

E01options.ztstH A D12-Feb-202230.1 KiB1,4171,313

E02xtrace.ztstH A D12-Feb-20224.3 KiB149140

Makefile.inH A D17-Aug-20192.3 KiB8136

P01privileged.ztstH A D12-Feb-20227.3 KiB198186

READMEH A D14-Feb-20201 KiB3227

V01zmodload.ztstH A D12-Feb-20228.5 KiB372322

V02zregexparse.ztstH A D04-Dec-20177.5 KiB383318

V03mathfunc.ztstH A D16-Dec-20184 KiB148135

V04features.ztstH A D04-Dec-20174.4 KiB173146

V05styles.ztstH A D12-Feb-20224.4 KiB154129

V06parameter.ztstH A D05-Jan-20201.9 KiB9889

V07pcre.ztstH A D12-Feb-20224.4 KiB178166

V08zpty.ztstH A D12-Feb-2022748 3024

V09datetime.ztstH A D12-Feb-20223.3 KiB133115

V10private.ztstH A D12-Feb-20226.4 KiB305275

V11db_gdbm.ztstH A D04-Dec-20176.5 KiB328293

V12zparseopts.ztstH A D12-Feb-20224.7 KiB173155

W01history.ztstH A D12-Feb-20222 KiB9181

W02jobs.ztstH A D12-Feb-20224.5 KiB199180

X02zlevi.ztstH A D12-Feb-202212.1 KiB613514

X03zlebindkey.ztstH A D12-Feb-20223.4 KiB161149

X04zlehighlight.ztstH A D12-Feb-20226.6 KiB160148

Y01completion.ztstH A D12-Feb-20225.6 KiB231206

Y02compmatch.ztstH A D12-Feb-202217.6 KiB684617

Y03arguments.ztstH A D12-Feb-202218.2 KiB742648

comptestH A D12-Feb-20224.7 KiB178163

list-XFailsH A D03-Feb-2020209 61

runtests.zshH A D12-Feb-2022758 2819

ztst.zshH A D12-Feb-202215.4 KiB592446

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 P: privileged (needs super-user privileges)
10 V: modules
11 W: builtin interactive commands and constructs
12 X: line editing
13 Y: completion
14 Z: separate systems and user contributions
15
16You will need to run these by using `make test' in the Test subdirectory of
17the build area for your system (which may or may not be the same as the
18Test subdirectory of the source tree), or the directory above.  You can get
19more information about the tests being performed with
20  ZTST_verbose=1 make check
21(`test' is equivalent to `check') or change 1 to 2 for even more detail.
22
23Individual or groups of tests can be performed with
24  make TESTNUM=C02 check
25or
26  make TESTNUM=C check
27to perform just the test beginning C02, or all tests beginning C,
28respectively.
29
30Instructions on how to write tests are given in B01cd.ztst, which acts as a
31model.
32