1#define LIBNAME "pthread"
2#include "sem.c"
3
4ATF_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