blob: 88dd8f2e380ecb75161f5571b7d787fa111ddee2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
# $NetBSD: Makefile,v 1.22 2025/10/18 20:27:23 riastradh Exp $
NOMAN= # defined
.include <bsd.own.mk>
TESTSDIR= ${TESTSBASE}/lib/libpthread
LDADD+= -lpthread
LDADD.t_fpu+= -lm
.include "${.PARSEDIR}/../csu/Makefile.check_stack"
SRCS.t_join= t_join.c ${SRCS_CHECK_STACK}
CPPFLAGS.t_join.c+= ${CPPFLAGS_CHECK_STACK}
CPPFLAGS.t_condwait.c+= -I${.CURDIR}/../libc/gen
TESTS_SH+= t_atexit
TESTS_C+= t_barrier
TESTS_SH+= t_cancel
TESTS_C+= t_cancellation
TESTS_C+= t_compat_cancel
TESTS_C+= t_cond
TESTS_C+= t_condwait
TESTS_C+= t_detach
TESTS_C+= t_equal
TESTS_SH+= t_exit
TESTS_C+= t_fork
TESTS_C+= t_fpu
TESTS_C+= t_join
TESTS_C+= t_kill
TESTS_C+= t_mutex
TESTS_C+= t_name
TESTS_C+= t_once
TESTS_C+= t_preempt
TESTS_SH+= t_resolv
TESTS_C+= t_rwlock
TESTS_C+= t_sem
TESTS_C+= t_sigmask
TESTS_C+= t_sigsuspend
TESTS_C+= t_siglongjmp
TESTS_C+= t_sleep
TESTS_C+= t_stack
TESTS_C+= t_swapcontext
TESTS_SH+= t_thread_local_dtor
TESTS_C+= t_timedmutex
LDADD.t_sem+= -lrt
LDADD.t_cancellation+= -lrt
LDADD.t_compat_cancel+= -lrt
CPPFLAGS.t_compat_cancel.c+= -I${NETBSDSRCDIR}/lib/libc
CPPFLAGS.t_compat_cancel.c+= -I${NETBSDSRCDIR}/sys
LDFLAGS.t_compat_cancel+= -Wl,--no-fatal-warnings # intend compat use
BINDIR= ${TESTSDIR}
PROGS= h_atexit
PROGS+= h_cancel
PROGS+= h_exit
PROGS+= h_resolv
PROGS_CXX+= h_thread_local_dtor
TESTS_C+= t_call_once t_cnd t_mtx t_thrd t_tss # C11 threads(3)
COPTS.h_thread_local_dtor.cpp+= -std=c++11
# Deal with questionable warning and header quality in libstdc++.
COPTS.h_thread_local_dtor.cpp+= ${${ACTIVE_CC} == "gcc" :? -Wno-ctor-dtor-privacy -Wno-sign-compare -Wno-shadow :}
SRCS.h_thread_local_dtor= h_thread_local_dtor.cpp
FILESDIR= ${TESTSDIR}
FILES= d_mach
TESTS_SUBDIRS+= dlopen
TESTS_SUBDIRS+= weak
.include <bsd.test.mk>
|