FreeBSD src
Go to file
Enji Cooper 478290db20 Check in first src/tests snapshot from NetBSD anoncvs
Sources were obtained like so:

% export CVSROOT="anoncvs@anoncvs.NetBSD.org:/cvsroot"
% cvs -z9 co -D "09/30/2014 20:45" -P src/tests
% mv src/tests/* tests/dist/.

'*CVS*' has been added to svn:ignore to ease updating periodically from
upstream

Some line ending issues had to be resolved with test outputs and scripts
via dos2unix and by deleting the eol-style property set in usr.bin/sort

Discussed with: rpaulo
Sponsored by: EMC / Isilon Storage Division
2014-10-01 04:07:17 +00:00
bin Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
crypto Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
dev Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
fs Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
games Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
include Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
ipf Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
kernel Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
lib Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
libexec Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
modules Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
net Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
rump Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
sbin Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
share Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
sys Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
usr.bin Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
usr.sbin Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
h_macros.h Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
Makefile Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
Makefile.inc Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00
README Check in first src/tests snapshot from NetBSD anoncvs 2014-10-01 04:07:17 +00:00

$NetBSD: README,v 1.4 2012/05/18 15:36:21 jruoho Exp $

When adding new tests, please try to follow the following conventions.

1. For library routines, including system calls, the directory structure of
   the tests should follow the directory structure of the real source tree.
   For instance, interfaces available via the C library should follow:

	src/lib/libc/gen -> src/tests/lib/libc/gen
	src/lib/libc/sys -> src/tests/lib/libc/sys
	...

2. Equivalently, all tests for userland utilities should try to follow their
   location in the source tree. If this can not be satisfied, the tests for
   a utility should be located under the directory to which the utility is
   installed. Thus, a test for env(1) should go to src/tests/usr.bin/env.
   Likewise, a test for tcpdump(8) should be in src/tests/usr.sbin/tcpdump,
   even though the source code for the program is located under src/external.

3. Otherwise use your own discretion.