Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
bin/ | H | - | - | 15,992 | 11,805 | |
compat/ | H | - | - | 741 | 323 | |
crypto/ | H | - | - | 5,118 | 3,502 | |
dev/ | H | - | - | 18,652 | 14,632 | |
fs/ | H | - | - | 18,345 | 12,364 | |
games/ | H | - | - | 271 | 185 | |
include/ | H | - | - | 6,163 | 4,818 | |
ipf/ | H | - | - | 18,124 | 16,289 | |
kernel/ | H | - | - | 11,501 | 7,397 | |
lib/ | H | - | - | 339,408 | 297,125 | |
libexec/ | H | - | - | 3,222 | 1,759 | |
modules/ | H | - | - | 6,643 | 4,798 | |
net/ | H | - | - | 46,155 | 32,891 | |
rump/ | H | - | - | 4,326 | 2,673 | |
sbin/ | H | - | - | 5,729 | 4,239 | |
share/ | H | - | - | 593 | 354 | |
sys/ | H | - | - | 4,857 | 3,116 | |
usr.bin/ | H | - | - | 79,650 | 48,661 | |
usr.sbin/ | H | - | - | 3,122 | 2,110 | |
Makefile | H A D | 19-Aug-2023 | 746 | 44 | 28 | |
Makefile.inc | H A D | 24-Apr-2023 | 480 | 15 | 12 | |
README | H A D | 18-May-2012 | 941 | 21 | 15 | |
h_macros.h | H A D | 20-Aug-2016 | 2.7 KiB | 88 | 47 |
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