Commit | Line | Data |
---|---|---|
f5ab766e MD |
1 | AM_LDFLAGS=-lpthread |
2 | AM_CFLAGS=-I$(top_srcdir) -I$(top_builddir) -I$(top_srcdir)/tests/common -g | |
3 | ||
4 | noinst_PROGRAMS = test_urcu test_urcu_dynamic_link test_urcu_timing \ | |
5 | test_urcu_signal test_urcu_signal_dynamic_link test_urcu_signal_timing \ | |
6 | test_rwlock_timing test_rwlock test_perthreadlock_timing \ | |
7 | test_perthreadlock test_urcu_yield test_urcu_signal_yield test_urcu_mb \ | |
8 | test_urcu_qsbr_timing test_urcu_qsbr \ | |
9 | test_mutex test_looplen test_urcu_gc test_urcu_signal_gc \ | |
10 | test_urcu_lgc \ | |
11 | test_urcu_mb_gc test_urcu_qsbr_gc test_urcu_qsbr_lgc test_urcu_signal_lgc \ | |
12 | test_urcu_mb_lgc test_urcu_qsbr_dynamic_link test_urcu_defer \ | |
13 | test_urcu_assign test_urcu_assign_dynamic_link \ | |
14 | test_urcu_bp test_urcu_bp_dynamic_link test_cycles_per_loop \ | |
15 | test_urcu_lfq test_urcu_wfq test_urcu_lfs test_urcu_wfs \ | |
16 | test_urcu_lfs_rcu \ | |
17 | test_urcu_wfcq \ | |
18 | test_urcu_wfq_dynlink test_urcu_wfs_dynlink \ | |
19 | test_urcu_wfcq_dynlink \ | |
20 | test_urcu_lfq_dynlink test_urcu_lfs_dynlink test_urcu_hash \ | |
21 | test_urcu_lfs_rcu_dynlink | |
22 | ||
23 | if COMPAT_ARCH | |
24 | COMPAT=$(top_srcdir)/compat_arch_@ARCHTYPE@.c | |
25 | else | |
26 | COMPAT= | |
27 | endif | |
28 | ||
29 | if COMPAT_FUTEX | |
30 | COMPAT+=$(top_srcdir)/compat_futex.c | |
31 | endif | |
32 | ||
33 | URCU=$(top_srcdir)/urcu.c $(top_srcdir)/urcu-pointer.c $(top_srcdir)/wfcqueue.c $(COMPAT) | |
34 | URCU_QSBR=$(top_srcdir)/urcu-qsbr.c $(top_srcdir)/urcu-pointer.c $(top_srcdir)/wfcqueue.c $(COMPAT) | |
35 | # URCU_MB uses urcu.c but -DRCU_MB must be defined | |
36 | URCU_MB=$(top_srcdir)/urcu.c $(top_srcdir)/urcu-pointer.c $(top_srcdir)/wfcqueue.c $(COMPAT) | |
37 | # URCU_SIGNAL uses urcu.c but -DRCU_SIGNAL must be defined | |
38 | URCU_SIGNAL=$(top_srcdir)/urcu.c $(top_srcdir)/urcu-pointer.c $(top_srcdir)/wfcqueue.c $(COMPAT) | |
39 | URCU_BP=$(top_srcdir)/urcu-bp.c $(top_srcdir)/urcu-pointer.c $(top_srcdir)/wfcqueue.c $(COMPAT) | |
40 | URCU_DEFER=$(top_srcdir)/urcu.c $(top_srcdir)/urcu-pointer.c $(top_srcdir)/wfcqueue.c $(COMPAT) | |
41 | ||
42 | URCU_COMMON_LIB=$(top_builddir)/liburcu-common.la | |
43 | URCU_LIB=$(top_builddir)/liburcu.la | |
44 | URCU_QSBR_LIB=$(top_builddir)/liburcu-qsbr.la | |
45 | URCU_MB_LIB=$(top_builddir)/liburcu-mb.la | |
46 | URCU_SIGNAL_LIB=$(top_builddir)/liburcu-signal.la | |
47 | URCU_BP_LIB=$(top_builddir)/liburcu-bp.la | |
48 | URCU_CDS_LIB=$(top_builddir)/liburcu-cds.la | |
49 | ||
50 | EXTRA_DIST = *.sh | |
51 | ||
52 | test_urcu_SOURCES = test_urcu.c $(URCU) | |
53 | ||
54 | test_urcu_dynamic_link_SOURCES = test_urcu.c $(URCU) | |
55 | test_urcu_dynamic_link_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
56 | ||
57 | test_urcu_timing_SOURCES = test_urcu_timing.c $(URCU) | |
58 | ||
59 | test_urcu_yield_SOURCES = test_urcu.c $(URCU) | |
60 | test_urcu_yield_CFLAGS = -DDEBUG_YIELD $(AM_CFLAGS) | |
61 | ||
62 | ||
63 | test_urcu_qsbr_SOURCES = test_urcu_qsbr.c $(URCU_QSBR) | |
64 | ||
65 | test_urcu_qsbr_timing_SOURCES = test_urcu_qsbr_timing.c $(URCU_QSBR) | |
66 | ||
67 | ||
68 | test_urcu_mb_SOURCES = test_urcu.c $(URCU_MB) | |
69 | test_urcu_mb_CFLAGS = -DRCU_MB $(AM_CFLAGS) | |
70 | ||
71 | ||
72 | test_urcu_signal_SOURCES = test_urcu.c $(URCU_SIGNAL) | |
73 | test_urcu_signal_CFLAGS = -DRCU_SIGNAL $(AM_CFLAGS) | |
74 | ||
75 | test_urcu_signal_dynamic_link_SOURCES = test_urcu.c $(URCU_SIGNAL) | |
76 | test_urcu_signal_dynamic_link_CFLAGS = -DRCU_SIGNAL -DDYNAMIC_LINK_TEST \ | |
77 | $(AM_CFLAGS) | |
78 | ||
79 | test_urcu_signal_timing_SOURCES = test_urcu_timing.c $(URCU_SIGNAL) | |
80 | test_urcu_signal_timing_CFLAGS= -DRCU_SIGNAL $(AM_CFLAGS) | |
81 | ||
82 | test_urcu_signal_yield_SOURCES = test_urcu.c $(URCU_SIGNAL) | |
83 | test_urcu_signal_yield_CFLAGS = -DRCU_SIGNAL -DDEBUG_YIELD $(AM_CFLAGS) | |
84 | ||
85 | test_rwlock_timing_SOURCES = test_rwlock_timing.c $(URCU_SIGNAL) | |
86 | ||
87 | test_rwlock_SOURCES = test_rwlock.c $(URCU_SIGNAL) | |
88 | ||
89 | test_perthreadlock_timing_SOURCES = test_perthreadlock_timing.c $(URCU_SIGNAL) | |
90 | ||
91 | test_perthreadlock_SOURCES = test_perthreadlock.c $(URCU_SIGNAL) | |
92 | ||
93 | test_mutex_SOURCES = test_mutex.c $(URCU) | |
94 | ||
95 | test_looplen_SOURCES = test_looplen.c | |
96 | ||
97 | test_urcu_gc_SOURCES = test_urcu_gc.c $(URCU) | |
98 | ||
99 | test_urcu_signal_gc_SOURCES = test_urcu_gc.c $(URCU_SIGNAL) | |
100 | test_urcu_signal_gc_CFLAGS = -DRCU_SIGNAL $(AM_CFLAGS) | |
101 | ||
102 | test_urcu_mb_gc_SOURCES = test_urcu_gc.c $(URCU_MB) | |
103 | test_urcu_mb_gc_CFLAGS = -DRCU_MB $(AM_CFLAGS) | |
104 | ||
105 | test_urcu_qsbr_gc_SOURCES = test_urcu_qsbr_gc.c $(URCU_QSBR) | |
106 | ||
107 | test_urcu_qsbr_lgc_SOURCES = test_urcu_qsbr_gc.c $(URCU_QSBR) | |
108 | test_urcu_qsbr_lgc_CFLAGS = -DTEST_LOCAL_GC $(AM_CFLAGS) | |
109 | ||
110 | test_urcu_lgc_SOURCES = test_urcu_gc.c $(URCU) | |
111 | test_urcu_lgc_CFLAGS = -DTEST_LOCAL_GC $(AM_CFLAGS) | |
112 | ||
113 | test_urcu_signal_lgc_SOURCES = test_urcu_gc.c $(URCU_SIGNAL) | |
114 | test_urcu_signal_lgc_CFLAGS = -DRCU_SIGNAL -DTEST_LOCAL_GC $(AM_CFLAGS) | |
115 | ||
116 | test_urcu_mb_lgc_SOURCES = test_urcu_gc.c $(URCU_MB) | |
117 | test_urcu_mb_lgc_CFLAGS = -DTEST_LOCAL_GC -DRCU_MB $(AM_CFLAGS) | |
118 | ||
119 | test_urcu_qsbr_dynamic_link_SOURCES = test_urcu_qsbr.c $(URCU_QSBR) | |
120 | test_urcu_qsbr_dynamic_link_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
121 | ||
122 | test_urcu_defer_SOURCES = test_urcu_defer.c $(URCU_DEFER) | |
123 | ||
124 | test_cycles_per_loop_SOURCES = test_cycles_per_loop.c | |
125 | ||
126 | test_urcu_assign_SOURCES = test_urcu_assign.c $(URCU) | |
127 | ||
128 | test_urcu_assign_dynamic_link_SOURCES = test_urcu_assign.c $(URCU) | |
129 | test_urcu_assign_dynamic_link_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
130 | ||
131 | test_urcu_bp_SOURCES = test_urcu_bp.c $(URCU_BP) | |
132 | ||
133 | test_urcu_bp_dynamic_link_SOURCES = test_urcu_bp.c $(URCU_BP) | |
134 | test_urcu_bp_dynamic_link_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
135 | ||
136 | test_urcu_lfq_SOURCES = test_urcu_lfq.c $(URCU) | |
137 | test_urcu_lfq_LDADD = $(URCU_CDS_LIB) | |
138 | ||
139 | test_urcu_lfq_dynlink_SOURCES = test_urcu_lfq.c $(URCU) | |
140 | test_urcu_lfq_dynlink_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
141 | test_urcu_lfq_dynlink_LDADD = $(URCU_CDS_LIB) | |
142 | ||
143 | test_urcu_wfq_SOURCES = test_urcu_wfq.c $(COMPAT) | |
144 | test_urcu_wfq_LDADD = $(URCU_COMMON_LIB) | |
145 | ||
146 | test_urcu_wfq_dynlink_SOURCES = test_urcu_wfq.c | |
147 | test_urcu_wfq_dynlink_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
148 | test_urcu_wfq_dynlink_LDADD = $(URCU_COMMON_LIB) | |
149 | ||
150 | test_urcu_wfcq_SOURCES = test_urcu_wfcq.c $(COMPAT) | |
151 | test_urcu_wfcq_LDADD = $(URCU_COMMON_LIB) | |
152 | ||
153 | test_urcu_wfcq_dynlink_SOURCES = test_urcu_wfcq.c | |
154 | test_urcu_wfcq_dynlink_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
155 | test_urcu_wfcq_dynlink_LDADD = $(URCU_COMMON_LIB) | |
156 | ||
157 | test_urcu_lfs_SOURCES = test_urcu_lfs.c $(URCU) | |
158 | test_urcu_lfs_LDADD = $(URCU_CDS_LIB) | |
159 | ||
160 | test_urcu_lfs_rcu_SOURCES = test_urcu_lfs_rcu.c $(URCU) | |
161 | test_urcu_lfs_rcu_LDADD = $(URCU_CDS_LIB) | |
162 | ||
163 | test_urcu_lfs_dynlink_SOURCES = test_urcu_lfs.c $(URCU) | |
164 | test_urcu_lfs_dynlink_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
165 | test_urcu_lfs_dynlink_LDADD = $(URCU_CDS_LIB) | |
166 | ||
167 | test_urcu_lfs_rcu_dynlink_SOURCES = test_urcu_lfs_rcu.c $(URCU) | |
168 | test_urcu_lfs_rcu_dynlink_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
169 | test_urcu_lfs_rcu_dynlink_LDADD = $(URCU_CDS_LIB) | |
170 | ||
171 | test_urcu_wfs_SOURCES = test_urcu_wfs.c $(COMPAT) | |
172 | test_urcu_wfs_LDADD = $(URCU_COMMON_LIB) | |
173 | ||
174 | test_urcu_wfs_dynlink_SOURCES = test_urcu_wfs.c | |
175 | test_urcu_wfs_dynlink_CFLAGS = -DDYNAMIC_LINK_TEST $(AM_CFLAGS) | |
176 | test_urcu_wfs_dynlink_LDADD = $(URCU_COMMON_LIB) | |
177 | ||
178 | test_urcu_hash_SOURCES = test_urcu_hash.c test_urcu_hash.h \ | |
179 | test_urcu_hash_rw.c test_urcu_hash_unique.c $(COMPAT) | |
180 | test_urcu_hash_CFLAGS = -DRCU_QSBR $(AM_CFLAGS) | |
181 | test_urcu_hash_LDADD = $(URCU_QSBR_LIB) $(URCU_CDS_LIB) | |
182 | ||
183 | .PHONY: bench | |
184 | ||
185 | bench: | |
186 | ./runall.sh |