freebsd-dev/tools/regression
Robert Watson d903306a26 Enhance and expand kernel privilege regression tests in support of
work present in FreeBSD 7.0 to refine the kernel privilege model:

- Introduce support for jail as a testing variable, in order to
  confirm that privileges are properly restricted in the jail
  environment.

- Restructure overall testing approach so that privilege and jail
  conditions are set in the testing infrastructure before tests
  are invoked, and done so in a custom-created process to isolate
  the impact of tests from each other in a more consistent way.

- Tests now provide setup and cleanup hooks that occur before and
  after the test runs.

- New privilege tests are now present for several audit
  privileges, several credential management privileges, dmesg
  buffer reading privilege, and netinet raw socket creation.

- Other existing tests are restructured and generally improved as
  a result of better framework structure and jail as a variable.
  For exampe, we now test that certain sysctls are writable only
  outside jail, while others are writable within jail.  On a
  similar note, privileges relating to setting UFS file flags are
  now better exercised, as with the right to chmod and utimes
  files.

Approved by:	re (bmah)
Obtained from:	TrustedBSD Project
2007-09-09 23:08:39 +00:00
..
acct Test the integer-arithmetic float conversions encode_timeval and encode_long 2007-05-22 05:52:04 +00:00
aio
atm Make the order of tests the same for user and kernel. Use the natural 2007-06-14 20:11:48 +00:00
audit/audit_pipe_ioctl
bin/sh Add regression tests for exec.c rev 1.30. 2007-01-11 00:25:20 +00:00
ccd/layout
environ Added environ-replacement detection. For programs that "clean" (i.e., su) 2007-07-20 23:30:13 +00:00
ethernet/ethermulti Add a regression test for ethernet link-layer multicast memberships. 2007-02-25 01:58:02 +00:00
execve o Grammar. 2006-10-09 06:47:08 +00:00
fifo Use z modifier for size_t and ssize_t. 2006-11-07 23:28:30 +00:00
file o Indent by tab. 2006-11-11 18:45:20 +00:00
fstest Make fstest work out-of-the-box on Solaris: 2007-07-18 18:07:15 +00:00
fsx Fix a obsecure coredump while testing with tmpfs on amd64. 2007-06-26 13:51:53 +00:00
gaithrstress
geom
geom_concat
geom_eli Add support for Camellia encryption algorithm. 2007-09-01 06:33:02 +00:00
geom_gate
geom_gpt
geom_mirror
geom_nop
geom_raid3
geom_shsec
geom_stripe
geom_uzip
ia64
include/tgmath
ipsec Adding tests for Camellia which will be added to the tree soon. 2007-03-26 07:40:51 +00:00
lib Add regression tests for flopen(3). 2007-08-03 11:29:49 +00:00
mac/mac_bsdextended
mlock
mqueue Fix compiling. 2007-01-06 11:32:15 +00:00
msdosfs
net80211
netatalk/simple_send
netinet Add regression test for SSM code. 2007-06-12 16:29:22 +00:00
netinet6 Regression tests for recent changes to inet6_rth_* family of functions 2007-04-21 11:23:33 +00:00
netipx
nfsmmap
p1003_1b
pipe
priv Enhance and expand kernel privilege regression tests in support of 2007-09-09 23:08:39 +00:00
pthread/cv_cancel1 initialize mutex and cv. 2006-12-06 00:03:42 +00:00
redzone9
security
sigqueue
sockets Add a regression test to detect if waiting on the I/O serialization lock 2007-05-06 14:28:49 +00:00
sysvmsg Fix message size tests for msgsnd(3) and msgrcv(3). msgsz is the length of 2006-11-16 19:51:10 +00:00
sysvsem
sysvshm
tls
tmpfs New regression test updates for rename, etc. 2007-08-10 10:08:43 +00:00
ufs/uprintf
usr.bin Add a test case for sed(1) regression - we should not ignore case 2007-07-06 16:36:52 +00:00
usr.sbin Add sparc64 regression test files. 2007-05-24 07:00:53 +00:00
geom_subr.sh
README Document the .in .out file naming conventions adopted in commit_prep.pl's 2007-05-22 06:11:44 +00:00
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.

To avoid the pre-commit check program complaining about the lack of
CVS keywords in test data files, use a .in suffix for input files and
a .out suffix for output files.

To execute individual regression tests for binaries that you are
developing, add their directory in the path before running the tests.
Example:
cd /usr/src/tools/regression/usr.bin
(PATH=/home/user/src/experimental/jot:$PATH ; make SUBDIR=jot)

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

acct		Exercise the integer to float conversion used in acct(5)
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