xref: /freebsd-src/contrib/netbsd-tests/lib/semaphore/pthread/t_sem_pth.c (revision 9268022b74279434ed6300244e3f977e56a8ceb5)
1 #define LIBNAME "pthread"
2 #include "sem.c"
3 
ATF_TP_ADD_TCS(tp)4 ATF_TP_ADD_TCS(tp)
5 {
6 
7 	ATF_TP_ADD_TC(tp, postwait);
8 	ATF_TP_ADD_TC(tp, initvalue);
9 	ATF_TP_ADD_TC(tp, destroy);
10 	ATF_TP_ADD_TC(tp, busydestroy);
11 	ATF_TP_ADD_TC(tp, blockwait);
12 	ATF_TP_ADD_TC(tp, blocktimedwait);
13 	ATF_TP_ADD_TC(tp, named);
14 	ATF_TP_ADD_TC(tp, unlink);
15 
16 	return atf_no_error();
17 }
18