7e3db62753
Bug 220398 - lio_listio(2) never sends asynchronous notification if nent==0 Bug 220459 - lio_listio(2) doesn't support SIGEV_THREAD PR: 220459 PR: 220398 Reviewed by: cem, jhb MFC after: 3 weeks Sponsored by: Spectra Logic Corp Differential Revision: https://reviews.freebsd.org/D11470
21 lines
342 B
Makefile
21 lines
342 B
Makefile
# $FreeBSD$
|
|
|
|
TESTSDIR= ${TESTSBASE}/sys/aio
|
|
|
|
ATF_TESTS_C+= aio_test
|
|
ATF_TESTS_C+= lio_test
|
|
TEST_METADATA.aio_test+= timeout="30"
|
|
TEST_METADATA.lio_test+= timeout="10"
|
|
|
|
PLAIN_TESTS_C+= aio_kqueue_test
|
|
PLAIN_TESTS_C+= lio_kqueue_test
|
|
|
|
LIBADD.aio_test+= util rt
|
|
LIBADD.lio_test+= rt
|
|
|
|
CFLAGS+= -I${.CURDIR:H:H}
|
|
|
|
WARNS?= 6
|
|
|
|
.include <bsd.test.mk>
|