xref: /freebsd/tests/sys/aio/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1TESTSDIR=	${TESTSBASE}/sys/aio
2
3ATF_TESTS_C+=	aio_test
4ATF_TESTS_C+=	lio_test
5TEST_METADATA.aio_test+= timeout="30"
6TEST_METADATA.lio_test+= timeout="10"
7# Some lio_test testcases involve system resource limitations, so cannot run concurrently
8TEST_METADATA.lio_test+= is_exclusive=true
9
10PLAIN_TESTS_C+=	aio_kqueue_test
11PLAIN_TESTS_C+=	lio_kqueue_test
12
13LIBADD.aio_test+=	util rt
14LIBADD.lio_test+=	rt
15
16CFLAGS+=	-I${.CURDIR:H:H}
17
18.include <bsd.test.mk>
19