NetBSD/tests
rillig d5ff218b54 lint: add test for macro from system header in strict bool mode
Seen in usr.bin/make/meta.c:1670: FD_ZERO(&readfds).  These macros
cannot be fixed since system headers must not include <stdbool.h>.
Therefore INT constants should be accepted as controlling expressions as
well.
2021-01-17 21:19:06 +00:00
..
bin
crypto
dev Unmount and unconfigure in the reverse order that they were done. Fixes 2021-01-14 04:30:40 +00:00
fs
games
include
ipf
kernel
lib skip sigbus_adraln on MIPS 2021-01-13 06:44:55 +00:00
libexec
modules
net Use a state of IPCP and IPv6CP to wait for connection established 2020-11-25 10:35:07 +00:00
rump the busypage test is buggy, expect it to fail. 2020-12-08 17:52:11 +00:00
sbin apply this change to a a couple more tests: 2020-12-10 08:16:59 +00:00
share
sys
usr.bin lint: add test for macro from system header in strict bool mode 2021-01-17 21:19:06 +00:00
usr.sbin
h_macros.h
Makefile
Makefile.inc
README

$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.