xref: /netbsd-src/tests/lib/semaphore/pthread/t_sem_pth.c (revision 4acff4c01bb0a2d6d9cdf108291ff7813a860556)
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