freebsd-dev/tools/regression
2005-12-07 01:30:44 +00:00
..
aio This test can run now. 2005-10-12 18:04:18 +00:00
atm
bin/sh Add test cases for the command built-in, including its -v and -V options which 2005-10-28 14:02:42 +00:00
ccd/layout
fifo Add two small tests to set and clear two file I/O flags using ioctl on 2005-09-13 17:25:35 +00:00
fsx
gaithrstress
geom
geom_concat Finish conversion of gconcat(8) regression tests to the new framework. 2005-12-07 01:24:25 +00:00
geom_eli Add regression tests (121 in total) for GEOM_ELI class. 2005-07-27 22:27:30 +00:00
geom_gate
geom_gpt Update to match geom_gpt:1.35 2005-11-13 22:02:04 +00:00
geom_mirror - Make use of geom_subr.sh to improve regression tests. 2005-12-07 01:27:23 +00:00
geom_nop - Make use of geom_subr.sh to improve regression tests. 2005-12-07 01:27:23 +00:00
geom_raid3 Convert graid3(8) regression tests to the new framework. 2005-12-07 01:28:59 +00:00
geom_shsec Convert gshsec(8) regression tests to the new framework. 2005-12-07 01:29:50 +00:00
geom_stripe Convert gstripe(8) regression tests to the new framework. 2005-12-07 01:30:44 +00:00
geom_uzip Use mkuzip(8) instead of create_compressed_fs. 2005-09-29 22:41:20 +00:00
ia64/unaligned
include/tgmath
lib Add regression tests for trimdomain(3). 2005-10-05 04:46:10 +00:00
mac/mac_bsdextended Those who are ungodlike should be returned an error. 2005-04-16 18:41:00 +00:00
mlock
mqueue Add code to test POSIX message queue. 2005-11-26 13:19:09 +00:00
msdosfs Add another regression tests for msdosfs which covers msdosfs_conv.c rev 1.45. 2005-07-18 12:15:24 +00:00
net80211 Catching up with the latest crypto API changes in net80211. 2005-05-05 13:16:30 +00:00
netatalk/simple_send
netinet Add a regression test to test two variations on the same bug: joining a 2005-09-05 13:23:01 +00:00
nfsmmap
p1003_1b
pipe
security
sigqueue Add code to test queued SIGCHLD. 2005-11-08 09:19:44 +00:00
sockets Add unix_passfd, a simple set of regression tests for UNIX domain socket 2005-11-09 21:41:20 +00:00
sysvmsg
sysvsem
sysvshm
tls Adjust code to be more reliable. 2005-04-24 00:17:30 +00:00
ufs/uprintf Small regression test tool to generate two forms of ENOSPC on a file 2005-09-19 16:29:36 +00:00
usr.bin Add tests for -t option with short tty name - pkill(1) should accept both 2005-11-07 16:56:16 +00:00
geom_subr.sh Add file with helper functions for geom tools regression tests. 2005-12-07 01:20:18 +00:00
README
TODO

$FreeBSD$

This directory is for regression test programs.

A regression test program is one that will exercise a particular bit of the
system to check that we have not reintroduced an old bug.

Tests should be implemented in files with a .t extension.  Each .t file
can contain more than one test, and can be implemented in any scripting
language -- /bin/sh, Perl...

The test protocol is quite simple.  At its most basic, each .t file should, 
when run, print a line in this format:

   1..m

where m is the number of tests that will be run.

Each test should produce a single line of output.  This line should start
with one of

   ok n
   not ok n

to indicate whether or not the test succeeded.  'n' is the test's number.
Anything after this on the line (up to the first '#' if present) is 
considered to be the name of the test.  Naming tests is optional, but 
encouraged.

A test may be written which is conditional, and may need to be skipped.
For example, the netatalk tests require 'options NETATALK' in the kernel.
A test may be skipped by printing '# skip Reason for skipping' after the
test name.  For example,

    ok 1 - netatalk # skip 'options NETATALK' not compiled in

A test may be flagged as 'todo'.  This indicates that you expect the test
to fail (perhaps because the necessary functionality hasn't been written
yet).  'todo' tests are expected to fail, so when they start working the
test framework can alert you to this happy occurence.  Flag these tests 
with a '# TODO' comment after the test name

    not ok 1 - infiniteloop # TODO write test for an infinite loop

This is modelled on the protocol followed by the Test::Harness Perl
module (and therefore much of the automated testing carried out by the 
Perl community).  More documentation can be found at:

    http://search.cpan.org/~petdance/Test-Harness-2.42/lib/Test/Harness.pm

To run the tests and parse their output install the devel/p5-Test-Harness
port.  This includes the prove(1) command which is used to run the tests
and collate the output.

    prove geom_concat		# run all the tests in geom_concat
    prove -r lib		# run all tests in lib/, and subdirectories
    prove -r -v lib		# as above, with verbose output
    prove -r			# run *all* the tests

Tests that are for parts of the base system should go into a directory here
which is the same as their path relative to src/, for example the uuencode(1)
utility resides in src/usr.bin/uuencode so its regression test resides in
src/tools/regression/usr.bin/uuencode.

Please make a subdir per other regression test, and add a brief description to
this file.

geom		Some tests and an out-of-kernel simulator for the GEOM code
ia64		ia64 specific regression tests
nfsmmap		Some tests to exercise some tricky cases in NFS and mmap
p1003_1b	Exercise 1003.1B scheduler
pipe		Pipe code regression test
fsx		General filesystem exerciser
sysvmsg 	SysV IPC Message Queue Regression Utility
sysvsem 	SysV IPC Semaphore Regression Utility
sysvshm 	SysV IPC Shared Memory Regression Utility
gaithrstress	General threaded getaddrinfo(3) exerciser