add missing include to ThreadId.h
[folly.git] / folly / test / Makefile.am
1 SUBDIRS = . function_benchmark
2
3 ACLOCAL_AMFLAGS = -I m4
4
5 CPPFLAGS += -isystem gtest/googletest/include -isystem gtest/googlemock/include
6
7 TESTS= \
8         sorted_vector_types_test \
9         foreach_test \
10         hash_test \
11         timeout_queue_test \
12         conv_test \
13         expected_test \
14         range_test \
15         math_test \
16         bits_test \
17         bit_iterator_test
18
19 check_LTLIBRARIES = libfollytestmain.la libgtest.la
20 check_PROGRAMS =
21 noinst_LTLIBRARIES = thread_local_test_lib.la
22
23 libgtest_la_CPPFLAGS = -isystem gtest/googletest
24 libgtest_la_SOURCES = gtest/googletest/src/gtest-all.cc
25
26 if FOLLY_TESTMAIN
27 libfollytestmain_la_CPPFLAGS = $(AM_CPPFLAGS) $(libgtest_la_CPPFLAGS)
28 libfollytestmain_la_SOURCES = $(libgtest_la_SOURCES) common/TestMain.cpp
29 libfollytestmain_la_LIBADD = $(top_builddir)/init/libfollyinit.la $(top_builddir)/libfolly.la
30 else
31 libfollytestmain_la_CPPFLAGS = $(libgtest_la_CPPFLAGS)
32 libfollytestmain_la_SOURCES = $(libgtest_la_SOURCES) gtest/googletest/src/gtest_main.cc
33 libfollytestmain_la_LIBADD = $(top_builddir)/libfolly.la
34 endif
35
36 thread_local_test_lib_la_CPPFLAGS = $(AM_CPPFLAGS)
37 thread_local_test_lib_la_SOURCES = ThreadLocalTestLib.cpp
38 thread_local_test_lib_la_LDFLAGS = -module -rpath /force_shared
39 thread_local_test_lib_la_LIBADD = $(top_builddir)/libfolly.la
40
41 noinst_HEADERS = FBStringTestBenchmarks.cpp.h \
42         FBVectorTestBenchmarks.cpp.h
43
44 spin_lock_test_SOURCES = SpinLockTest.cpp
45 spin_lock_test_LDADD = libfollytestmain.la
46 TESTS += spin_lock_test
47
48 array_test_SOURCES = ArrayTest.cpp
49 array_test_LDADD = libfollytestmain.la
50 TESTS += array_test
51
52 if RUN_ARCH_SPECIFIC_TESTS
53 small_locks_test_SOURCES = SmallLocksTest.cpp
54 small_locks_test_LDADD = libfollytestmain.la
55 TESTS += small_locks_test
56
57 # Fails with WARNING: Logging before InitGoogleLogging() is written to STDERR
58 packed_sync_ptr_test_SOURCES = PackedSyncPtrTest.cpp
59 packed_sync_ptr_test_LDADD = libfollytestmain.la
60 TESTS += packed_sync_ptr_test
61
62 small_vector_test_SOURCES = small_vector_test.cpp
63 small_vector_test_LDADD = libfollytestmain.la
64 TESTS += small_vector_test
65
66 discriminated_ptr_test_SOURCES = DiscriminatedPtrTest.cpp
67 discriminated_ptr_test_LDADD = libfollytestmain.la
68 TESTS += discriminated_ptr_test
69
70 if !HAVE_PPC64
71 cpuid_test_SOURCES = CpuIdTest.cpp
72 cpuid_test_LDADD = libfollytestmain.la
73 TESTS += cpuid_test
74 endif
75 endif
76
77 sorted_vector_types_test_SOURCES = sorted_vector_test.cpp
78 sorted_vector_types_test_LDADD = libfollytestmain.la
79
80
81 foreach_test_SOURCES = ForeachTest.cpp
82 foreach_test_LDADD = libfollytestmain.la
83
84 foreach_benchmark_SOURCES = ForeachBenchmark.cpp
85 foreach_benchmark_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
86 check_PROGRAMS += foreach_benchmark
87
88 hash_test_SOURCES = HashTest.cpp
89 hash_test_LDADD = libfollytestmain.la
90
91
92 fbstring_test_using_jemalloc_SOURCES = FBStringTest.cpp
93 fbstring_test_using_jemalloc_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
94 TESTS += fbstring_test_using_jemalloc
95
96 thread_cached_int_test_SOURCES = ThreadCachedIntTest.cpp
97 thread_cached_int_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
98
99 thread_id_test_SOURCES = ThreadIdTest.cpp
100 thread_id_test_LDADD = libfollytestmain.la
101
102 thread_local_test_SOURCES = ThreadLocalTest.cpp
103 thread_local_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
104 thread_local_test_LDFLAGS = -ldl
105 TESTS += thread_cached_int_test thread_local_test
106
107 fbvector_test_SOURCES = FBVectorTest.cpp
108 fbvector_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
109 TESTS += fbvector_test
110
111 # fails due to cout
112 dynamic_test_SOURCES = DynamicTest.cpp
113 dynamic_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
114 TESTS += dynamic_test
115
116 # fails due to cout
117 json_test_SOURCES = JsonTest.cpp
118 json_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
119 TESTS += json_test
120
121 benchmark_test_SOURCES = BenchmarkTest.cpp
122 benchmark_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
123 check_PROGRAMS += benchmark_test
124
125 # fails due to destructor
126 scope_guard_test_SOURCES = ScopeGuardTest.cpp
127 scope_guard_test_LDADD = libfollytestmain.la
128 TESTS += scope_guard_test
129
130 timeout_queue_test_SOURCES = TimeoutQueueTest.cpp
131 timeout_queue_test_LDADD = libfollytestmain.la
132
133 conv_test_SOURCES = ConvTest.cpp
134 conv_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
135
136 expected_test_SOURCES = ExpectedTest.cpp
137 expected_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
138
139 range_test_SOURCES = RangeTest.cpp
140 range_test_LDADD = libfollytestmain.la
141
142 math_test_SOURCES = MathTest.cpp
143 math_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
144
145 bits_test_SOURCES = BitsTest.cpp
146 bits_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
147
148 bit_iterator_test_SOURCES = BitIteratorTest.cpp
149 bit_iterator_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
150
151 endian_test_SOURCES = EndianTest.cpp
152 endian_test_LDADD = libfollytestmain.la
153 TESTS += endian_test
154
155 rw_spinlock_test_SOURCES = RWSpinLockTest.cpp
156 rw_spinlock_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
157 TESTS += rw_spinlock_test
158
159 synchronized_test_SOURCES = SynchronizedTest.cpp
160 synchronized_test_LDADD = libfollytestmain.la
161 TESTS += synchronized_test
162
163 lock_traits_test_SOURCES = LockTraitsTest.cpp
164 lock_traits_test_LDADD = libfollytestmain.la
165 TESTS += lock_traits_test
166
167 concurrent_skiplist_test_SOURCES = ConcurrentSkipListTest.cpp
168 concurrent_skiplist_test_LDADD = libfollytestmain.la
169 TESTS += concurrent_skiplist_test
170
171 concurrent_skiplist_benchmark_SOURCES = ConcurrentSkipListBenchmark.cpp
172 concurrent_skiplist_benchmark_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
173 check_PROGRAMS += concurrent_skiplist_benchmark
174
175 conv_benchmark_SOURCES = ConvBenchmark.cpp
176 conv_benchmark_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
177 check_PROGRAMS += conv_benchmark
178
179 histogram_test_SOURCES = HistogramTest.cpp
180 histogram_test_LDADD = libfollytestmain.la
181 TESTS += histogram_test
182
183 group_varint_test_SOURCES = GroupVarintTest.cpp
184 group_varint_test_LDADD = libfollytestmain.la
185 TESTS += group_varint_test
186
187 map_util_test_SOURCES = MapUtilTest.cpp
188 map_util_test_LDADD = libfollytestmain.la
189 TESTS += map_util_test
190
191 string_test_SOURCES = StringTest.cpp
192 string_test_LDADD = libfollytestmain.la
193 TESTS += string_test
194
195 producer_consumer_queue_test_SOURCES = ProducerConsumerQueueTest.cpp
196 producer_consumer_queue_test_LDADD = libfollytestmain.la
197 TESTS += producer_consumer_queue_test
198
199 atomic_hash_array_test_SOURCES = AtomicHashArrayTest.cpp
200 atomic_hash_array_test_LDADD = libfollytestmain.la
201 TESTS += atomic_hash_array_test
202
203 atomic_hash_map_test_SOURCES = AtomicHashMapTest.cpp
204 atomic_hash_map_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
205 TESTS += atomic_hash_map_test
206
207 chrono_test_SOURCES = ChronoTest.cpp
208 chrono_test_LDADD = libfollytestmain.la
209 TESTS += chrono_test
210
211 format_test_SOURCES = FormatTest.cpp
212 format_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
213 TESTS += format_test
214
215 fingerprint_test_SOURCES = FingerprintTest.cpp
216 fingerprint_test_LDADD = libfollytestmain.la $(top_builddir)/libfollybenchmark.la
217 TESTS += fingerprint_test
218
219 portability_test_SOURCES = PortabilityTest.cpp
220 portability_test_LDADD = libfollytestmain.la
221 TESTS += portability_test
222
223 spooky_hash_v1_test_SOURCES = SpookyHashV1Test.cpp
224 spooky_hash_v1_test_LDADD = libfollytestmain.la  $(top_builddir)/libfollybenchmark.la
225 TESTS += spooky_hash_v1_test
226
227 spooky_hash_v2_test_SOURCES = SpookyHashV2Test.cpp
228 spooky_hash_v2_test_LDADD = libfollytestmain.la  $(top_builddir)/libfollybenchmark.la
229 TESTS += spooky_hash_v2_test
230
231 token_bucket_test_SOURCES = TokenBucketTest.cpp
232 token_bucket_test_LDADD = libfollytestmain.la  $(top_builddir)/libfollybenchmark.la
233 TESTS += token_bucket_test
234
235 thread_name_test_SOURCES = ThreadNameTest.cpp
236 thread_name_test_LDADD = libfollytestmain.la
237 TESTS += thread_name_test
238
239 indestructible_test_SOURCES = IndestructibleTest.cpp
240 indestructible_test_LDADD = libfollytestmain.la
241 TESTS += indestructible_test
242
243 portability_clock_gettime_wrappers_test_SOURCES = ClockGettimeWrappersTest.cpp
244 portability_clock_gettime_wrappers_test_LDADD = libfollytestmain.la
245 TESTS += portability_clock_gettime_wrappers_test
246
247 portability_time_test_SOURCES = ../portability/test/TimeTest.cpp
248 portability_time_test_LDADD = libfollytestmain.la
249 TESTS += portability_time_test
250
251 portability_constexpr_test_SOURCES = ../portability/test/ConstexprTest.cpp
252 portability_constexpr_test_LDADD = libfollytestmain.la
253 TESTS += portability_constexpr_test
254
255 try_test_SOURCES = TryTest.cpp
256 try_test_LDADD = libfollytestmain.la
257 TESTS += try_test
258
259 uncaught_exceptions_test_SOURCES = UncaughtExceptionsTest.cpp
260 uncaught_exceptions_test_LDADD = libfollytestmain.la
261 TESTS += uncaught_exceptions_test
262
263 unit_test_SOURCES = UnitTest.cpp
264 unit_test_LDADD = libfollytestmain.la
265 TESTS += unit_test
266
267 futures_test_SOURCES = \
268     ../futures/test/CallbackLifetimeTest.cpp \
269     ../futures/test/CollectTest.cpp \
270     ../futures/test/ContextTest.cpp \
271     ../futures/test/CoreTest.cpp \
272     ../futures/test/EnsureTest.cpp \
273     ../futures/test/ExecutorTest.cpp \
274     ../futures/test/FSMTest.cpp \
275     ../futures/test/FilterTest.cpp \
276     ../futures/test/FutureTest.cpp \
277     ../futures/test/HeaderCompileTest.cpp \
278     ../futures/test/InterruptTest.cpp \
279     ../futures/test/MapTest.cpp \
280     ../futures/test/NonCopyableLambdaTest.cpp \
281     ../futures/test/PollTest.cpp \
282     ../futures/test/PromiseTest.cpp \
283     ../futures/test/ReduceTest.cpp \
284     ../futures/test/RetryingTest.cpp \
285     ../futures/test/SelfDestructTest.cpp \
286     ../futures/test/SharedPromiseTest.cpp \
287     ../futures/test/TestExecutorTest.cpp \
288     ../futures/test/ThenCompileTest.cpp \
289     ../futures/test/ThenTest.cpp \
290     ../futures/test/TimekeeperTest.cpp \
291     ../futures/test/TimesTest.cpp \
292     ../futures/test/UnwrapTest.cpp \
293     ../futures/test/ViaTest.cpp \
294     ../futures/test/WaitTest.cpp \
295     ../futures/test/WillEqualTest.cpp \
296     ../futures/test/WindowTest.cpp \
297     ../futures/test/WhenTest.cpp \
298     ../futures/test/WhileDoTest.cpp
299
300 futures_test_LDADD = libfollytestmain.la
301 TESTS += futures_test
302
303 function_test_SOURCES = \
304                 FunctionRefTest.cpp \
305                 FunctionTest.cpp
306 function_test_LDADD = libfollytestmain.la
307 TESTS += function_test
308
309 functional_test_SOURCES = \
310                 FunctionalTest.cpp
311 functional_test_LDADD = libfollytestmain.la
312 TESTS += functional_test
313
314 ssl_test_SOURCES = \
315                 ../ssl/test/OpenSSLHashTest.cpp
316 ssl_test_LDADD = libfollytestmain.la -lcrypto
317 TESTS += ssl_test
318
319 mallctl_helper_test_SOURCES = MallctlHelperTest.cpp
320 mallctl_helper_test_LDADD = libfollytestmain.la
321 TESTS += mallctl_helper_test
322
323 apply_tuple_test_SOURCES = ApplyTupleTest.cpp
324 apply_tuple_test_LDADD = libfollytestmain.la
325 TESTS += apply_tuple_test
326
327 partial_test_SOURCES = PartialTest.cpp
328 partial_test_LDADD = libfollytestmain.la
329 TESTS += partial_test
330
331 singleton_thread_local_test_SOURCES = SingletonThreadLocalTest.cpp
332 singleton_thread_local_test_LDADD = libfollytestmain.la
333 TESTS += singleton_thread_local_test
334
335 utility_test_SOURCES = UtilityTest.cpp
336 utility_test_LDADD = libfollytestmain.la
337 TESTS += utility_test
338
339 iterator_test_SOURCES = IteratorTest.cpp
340 iterator_test_LDADD = libfollytestmain.la
341 TESTS += iterator_test
342
343 check_PROGRAMS += $(TESTS)