Name
Date
Size
#Lines
LOC

..--

bin/H--15,99211,805

compat/H--741323

crypto/H--5,1183,502

dev/H--18,65214,632

fs/H--18,34512,364

games/H--271185

include/H--6,1634,818

ipf/H--18,12416,289

kernel/H--11,5017,397

lib/H--339,408297,125

libexec/H--3,2221,759

modules/H--6,6434,798

net/H--46,15532,891

rump/H--4,3262,673

sbin/H--5,7294,239

share/H--593354

sys/H--4,8573,116

usr.bin/H--79,65048,661

usr.sbin/H--3,1222,110

MakefileH A D19-Aug-2023746 4428

Makefile.incH A D24-Apr-2023480 1512

READMEH A D18-May-2012941 2115

h_macros.hH A D20-Aug-20162.7 KiB8847

README

1$NetBSD: README,v 1.4 2012/05/18 15:36:21 jruoho Exp $
2
3When adding new tests, please try to follow the following conventions.
4
51. For library routines, including system calls, the directory structure of
6   the tests should follow the directory structure of the real source tree.
7   For instance, interfaces available via the C library should follow:
8
9	src/lib/libc/gen -> src/tests/lib/libc/gen
10	src/lib/libc/sys -> src/tests/lib/libc/sys
11	...
12
132. Equivalently, all tests for userland utilities should try to follow their
14   location in the source tree. If this can not be satisfied, the tests for
15   a utility should be located under the directory to which the utility is
16   installed. Thus, a test for env(1) should go to src/tests/usr.bin/env.
17   Likewise, a test for tcpdump(8) should be in src/tests/usr.sbin/tcpdump,
18   even though the source code for the program is located under src/external.
19
203. Otherwise use your own discretion.
21