Name Date Size #Lines LOC

..17-Aug-2023-

aio/aiop/H08-May-2022-231143

audit/audit_pipe_ioctl/H08-May-2022-15178

bpf/H17-Aug-2023-4,3472,606

capsicum/syscalls/H08-May-2022-1,3921,013

ccd/layout/H08-May-2022-5,8435,791

compat32/aarch64/H16-May-2023-416277

doat/H17-Aug-2023-685584

environ/H17-Aug-2023-832457

ethernet/ethermulti/H08-May-2022-261176

fsx/H17-Aug-2023-1,2381,031

gaithrstress/H17-Aug-2023-282212

geom/H17-Aug-2023-4,2704,083

geom_gpt/H27-Nov-2023-420327

include/H08-May-2022-787593

ipfw/fwd/H08-May-2022-369242

ipsec/H17-Aug-2023-208153

iscsi/H04-May-2024-889706

kgssapi/H17-Aug-2023-315256

kthread/kld/H08-May-2022-212145

lib/libc/regex/H08-May-2022-117

mlock/H17-Aug-2023-9648

msdosfs/H17-Aug-2023-175127

net/if_tap/H08-May-2022-5924

net80211/H08-May-2022-1,539875

netinet/H08-May-2022-4,9673,212

netinet6/H08-May-2022-784437

nfsmmap/H17-Aug-2023-172137

p1003_1b/H17-Aug-2023-1,067622

poll/H17-Aug-2023-1,2041,015

posixsem/H27-Nov-2023-1,6161,234

posixsem2/H17-Aug-2023-146126

priv/H17-Aug-2023-6,0363,680

pthread/H08-May-2022-441300

redzone9/H27-Nov-2023-165120

rpcsec_gss/H17-Aug-2023-407330

security/H08-May-2022-3,8212,534

sigqueue/H17-Aug-2023-174144

sockets/H08-May-2022-8,8685,965

sysvmsg/H17-Aug-2023-372199

sysvsem/H17-Aug-2023-378211

sysvshm/H17-Aug-2023-309166

tls/H17-Aug-2023-471304

tmpfs/H17-Aug-2023-2,3291,086

ufs/uprintf/H08-May-2022-194105

usb/H17-Aug-2023-3014

usr.bin/H08-May-2022-1,2671,031

zfs/H17-Aug-2023-12,01511,157

READMEH A D17-Aug-20233.5 KiB8865

TODOH A D17-Aug-20231.1 KiB3828

README

1
2This directory is for regression test programs.
3
4A regression test program is one that will exercise a particular bit of the
5system to check that we have not reintroduced an old bug.
6
7Tests should be implemented in files with a .t extension.  Each .t file
8can contain more than one test, and can be implemented in any scripting
9language -- /bin/sh, Perl...
10
11The test protocol is quite simple.  At its most basic, each .t file should,
12when run, print a line in this format:
13
14   1..m
15
16where m is the number of tests that will be run.
17
18Each test should produce a single line of output.  This line should start
19with one of
20
21   ok n
22   not ok n
23
24to indicate whether or not the test succeeded.  'n' is the test's number.
25Anything after this on the line (up to the first '#' if present) is
26considered to be the name of the test.  Naming tests is optional, but
27encouraged.
28
29A test may be written which is conditional, and may need to be skipped.
30For example, the netinet tests require 'options INET' in the kernel.
31A test may be skipped by printing '# skip Reason for skipping' after the
32test name.  For example,
33
34    ok 1 - netinet # skip 'options INET' not compiled in
35
36A test may be flagged as 'todo'.  This indicates that you expect the test
37to fail (perhaps because the necessary functionality hasn't been written
38yet).  'todo' tests are expected to fail, so when they start working the
39test framework can alert you to this happy occurrence.  Flag these tests
40with a '# TODO' comment after the test name
41
42    not ok 1 - infiniteloop # TODO write test for an infinite loop
43
44This is modelled on the protocol followed by the Test::Harness Perl
45module (and therefore much of the automated testing carried out by the
46Perl community).  More documentation can be found at:
47
48    http://search.cpan.org/~petdance/Test-Harness-2.42/lib/Test/Harness.pm
49
50To run the tests and parse their output install the devel/p5-Test-Harness
51port.  This includes the prove(1) command which is used to run the tests
52and collate the output.
53
54    prove geom_concat		# run all the tests in geom_concat
55    prove -r lib		# run all tests in lib/, and subdirectories
56    prove -r -v lib		# as above, with verbose output
57    prove -r			# run *all* the tests
58
59Tests that are for parts of the base system should go into a directory here
60which is the same as their path relative to src/, for example the uuencode(1)
61utility resides in src/usr.bin/uuencode so its regression test resides in
62src/tools/regression/usr.bin/uuencode.
63
64To avoid the pre-commit check program complaining about the lack of
65CVS keywords in test data files, use a .in suffix for input files and
66a .out suffix for output files.
67
68To execute individual regression tests for binaries that you are
69developing, add their directory in the path before running the tests.
70Example:
71cd /usr/src/tools/regression/usr.bin
72(PATH=/home/user/src/experimental/jot:$PATH ; make SUBDIR=jot)
73
74Please make a subdir per other regression test, and add a brief description to
75this file.
76
77acct		Exercise the integer to float conversion used in acct(5)
78geom		Some tests and an out-of-kernel simulator for the GEOM code
79nfsmmap		Some tests to exercise some tricky cases in NFS and mmap
80p1003_1b	Exercise 1003.1B scheduler
81pipe		Pipe code regression test
82fsx		General filesystem exerciser
83sysvmsg 	SysV IPC Message Queue Regression Utility
84sysvsem 	SysV IPC Semaphore Regression Utility
85sysvshm 	SysV IPC Shared Memory Regression Utility
86gaithrstress	General threaded getaddrinfo(3) exerciser
87date		Date(1) + format string regression test
88