NetBSD/regress/sys/Makefile
kamil 0593bf96cb Remove regress lseek tests, obsoleted by ATF
Many tests verify lseek through rumpkernels:
 - tests/dev/cgd/t_cgd_3des
 - tests/dev/cgd/t_cgd_aes
 - tests/dev/cgd/t_cgd_blowfish
 - tests/rump/rumpvfs/t_basic
 - tests/rump/rumpvfs/t_etfs

There are traditional lseek(2) tests too:
 - tests/kernel/kqueue/read/t_file
 - tests/kernel/kqueue/read/t_file2
 - tests/kernel/t_lockf
 - tests/lib/libc/stdio/t_fflush
 - tests/lib/libc/stdio/t_fopen
 - tests/lib/libc/sys/t_msync
 - etc
2017-05-14 04:26:40 +00:00

16 lines
295 B
Makefile

# $NetBSD: Makefile,v 1.16 2017/05/14 04:26:40 kamil Exp $
.include <bsd.own.mk>
SUBDIR= kern
.if exists(arch/${MACHINE}/Makefile)
SUBDIR+= arch/${MACHINE}
.endif
.if exists(arch/${MACHINE_ARCH}/Makefile)
SUBDIR+= arch/${MACHINE_ARCH}
.endif
SUBDIR := ${SUBDIR:O:u}
.include <bsd.subdir.mk>