Home | History | Annotate | Line # | Download | only in modules
Makefile revision 1.16
      1 # $NetBSD: Makefile,v 1.16 2019/04/06 03:06:29 thorpej Exp $
      2 
      3 .include <bsd.own.mk>
      4 
      5 TESTSDIR=	${TESTSBASE}/modules
      6 CPPFLAGS+=	-D_KERNTYPES
      7 
      8 # Ideally this test could be in the parent Makefile, which could not descend
      9 # into this directory at all.  Unfortunately, the etc/mtree/NetBSD.dist file
     10 # creates the 'modules' subdirectory unconditionally, which if left empty
     11 # will confuse atf-run.  Therefore we must install, at the very least, the
     12 # Atffile into it.
     13 TESTS_C=	t_modctl
     14 TESTS_C+=	t_builtin
     15 TESTS_C+=	t_kcov
     16 LDADD=		-lprop
     17 LDADD+=		-lrumpfs_kernfs -lrumpvfs -lrump -lrumpuser -lrump -lpthread
     18 
     19 TESTS_SH=	t_abi_uvm
     20 TESTS_SH+=	t_modload
     21 TESTS_SH+= 	t_klua_pr_52864
     22 TESTS_SH+=	t_threadpool
     23 
     24 SUBDIR=		k_helper
     25 SUBDIR+=	k_helper2
     26 SUBDIR+=	k_helper3
     27 SUBDIR+=	k_uvm
     28 SUBDIR+=	threadpool_tester
     29 SUBDIR+=	ufetchstore
     30 
     31 ATFFILE_EXTRA_SUBDIRS= t_ufetchstore
     32 
     33 .include <bsd.test.mk>
     34