blob: b32d954d2bb0d19c8279a0d5bded1f10c61298e6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#define LIBNAME "pthread"
#include "sem.c"
ATF_TP_ADD_TCS(tp)
{
ATF_TP_ADD_TC(tp, postwait);
ATF_TP_ADD_TC(tp, initvalue);
ATF_TP_ADD_TC(tp, destroy);
ATF_TP_ADD_TC(tp, busydestroy);
ATF_TP_ADD_TC(tp, blockwait);
ATF_TP_ADD_TC(tp, blocktimedwait);
ATF_TP_ADD_TC(tp, named);
ATF_TP_ADD_TC(tp, unlink);
return atf_no_error();
}
|