Android.mk revision 214e64135ee22e8aa7f71e56e0f5662dc6746ad0
1#
2# Copyright (C) 2012 The Android Open Source Project
3#
4# Licensed under the Apache License, Version 2.0 (the "License");
5# you may not use this file except in compliance with the License.
6# You may obtain a copy of the License at
7#
8#      http://www.apache.org/licenses/LICENSE-2.0
9#
10# Unless required by applicable law or agreed to in writing, software
11# distributed under the License is distributed on an "AS IS" BASIS,
12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13# See the License for the specific language governing permissions and
14# limitations under the License.
15#
16
17ifneq ($(BUILD_TINY_ANDROID),true)
18
19LOCAL_PATH := $(call my-dir)
20
21# -----------------------------------------------------------------------------
22# Unit tests.
23# -----------------------------------------------------------------------------
24
25ifeq ($(HOST_OS)-$(HOST_ARCH),$(filter $(HOST_OS)-$(HOST_ARCH),linux-x86 linux-x86_64))
26build_host := true
27else
28build_host := false
29endif
30
31# -----------------------------------------------------------------------------
32# All standard tests.
33# -----------------------------------------------------------------------------
34test_cflags = \
35    -fstack-protector-all \
36    -g \
37    -Wall -Wextra \
38    -Werror \
39    -fno-builtin \
40
41test_cflags += -D__STDC_LIMIT_MACROS  # For glibc.
42
43ifeq ($(MALLOC_IMPL),jemalloc)
44test_cflags += -DUSE_JEMALLOC
45endif
46
47test_cppflags = \
48    -std=gnu++11 \
49
50libBionicStandardTests_src_files := \
51    arpa_inet_test.cpp \
52    buffer_tests.cpp \
53    ctype_test.cpp \
54    dirent_test.cpp \
55    eventfd_test.cpp \
56    fcntl_test.cpp \
57    fenv_test.cpp \
58    ftw_test.cpp \
59    getauxval_test.cpp \
60    getcwd_test.cpp \
61    inttypes_test.cpp \
62    libc_logging_test.cpp \
63    libgen_test.cpp \
64    locale_test.cpp \
65    malloc_test.cpp \
66    math_cos_test.cpp \
67    math_cosf_test.cpp \
68    math_exp_test.cpp \
69    math_expf_test.cpp \
70    math_log_test.cpp \
71    math_logf_test.cpp \
72    math_pow_test.cpp \
73    math_powf_test.cpp \
74    math_sin_test.cpp \
75    math_sinf_test.cpp \
76    math_sincos_test.cpp \
77    math_sincosf_test.cpp \
78    math_tan_test.cpp \
79    math_tanf_test.cpp \
80    math_test.cpp \
81    mntent_test.cpp \
82    netdb_test.cpp \
83    pthread_test.cpp \
84    regex_test.cpp \
85    sched_test.cpp \
86    signal_test.cpp \
87    stack_protector_test.cpp \
88    stack_unwinding_test.cpp \
89    stdatomic_test.cpp \
90    stdint_test.cpp \
91    stdio_test.cpp \
92    stdlib_test.cpp \
93    string_test.cpp \
94    strings_test.cpp \
95    stubs_test.cpp \
96    sstream_test.cpp \
97    sys_epoll_test.cpp \
98    sys_mman_test.cpp \
99    sys_resource_test.cpp \
100    sys_select_test.cpp \
101    sys_sendfile_test.cpp \
102    sys_socket_test.cpp \
103    sys_stat_test.cpp \
104    sys_statvfs_test.cpp \
105    sys_syscall_test.cpp \
106    sys_time_test.cpp \
107    sys_types_test.cpp \
108    sys_vfs_test.cpp \
109    system_properties_test.cpp \
110    time_test.cpp \
111    unistd_test.cpp \
112    wchar_test.cpp \
113
114libBionicStandardTests_cflags := \
115    $(test_cflags) \
116
117libBionicStandardTests_cppflags := \
118    $(test_cppflags) \
119
120libBionicStandardTests_ldlibs_host := \
121    -lrt \
122
123libBionicStandardTests_whole_static_libraries := \
124    libBionicUnwindTest \
125
126module := libBionicStandardTests
127module_tag := optional
128build_type := target
129build_target := STATIC_TEST_LIBRARY
130include $(LOCAL_PATH)/Android.build.mk
131build_type := host
132include $(LOCAL_PATH)/Android.build.mk
133
134# -----------------------------------------------------------------------------
135# Special stack unwinding test library compiled with special flags.
136# -----------------------------------------------------------------------------
137libBionicUnwindTest_cflags := \
138    $(test_cflags) \
139    -fexceptions \
140    -fnon-call-exceptions \
141
142libBionicUnwindTest_src_files := \
143    stack_unwinding_test_impl.c \
144
145module := libBionicUnwindTest
146module_tag := optional
147build_type := target
148build_target := STATIC_TEST_LIBRARY
149include $(LOCAL_PATH)/Android.build.mk
150build_type := host
151include $(LOCAL_PATH)/Android.build.mk
152
153# -----------------------------------------------------------------------------
154# Fortify tests.
155# -----------------------------------------------------------------------------
156$(foreach compiler,gcc clang, \
157  $(foreach test,1 2, \
158    $(eval fortify$(test)-tests-$(compiler)_cflags := \
159      $(test_cflags) \
160      -U_FORTIFY_SOURCE \
161      -D_FORTIFY_SOURCE=$(test) \
162      -DTEST_NAME=Fortify$(test)_$(compiler)); \
163    $(eval fortify$(test)-tests-$(compiler)_cflags_host := \
164      -Wno-error); \
165    $(eval fortify$(test)-tests-$(compiler)_src_files := \
166      fortify_test.cpp); \
167    $(eval fortify_libs += fortify$(test)-tests-$(compiler)); \
168  ) \
169)
170
171module := fortify1-tests-gcc
172module_tag := optional
173build_type := target
174build_target := STATIC_TEST_LIBRARY
175include $(LOCAL_PATH)/Android.build.mk
176build_type := host
177include $(LOCAL_PATH)/Android.build.mk
178
179module := fortify2-tests-gcc
180module_tag := optional
181build_type := target
182build_target := STATIC_TEST_LIBRARY
183include $(LOCAL_PATH)/Android.build.mk
184build_type := host
185include $(LOCAL_PATH)/Android.build.mk
186
187fortify1-tests-clang_clang_target := true
188fortify1-tests-clang_cflags_host := -D__clang__
189
190module := fortify1-tests-clang
191module_tag := optional
192build_type := target
193build_target := STATIC_TEST_LIBRARY
194include $(LOCAL_PATH)/Android.build.mk
195build_type := host
196include $(LOCAL_PATH)/Android.build.mk
197
198fortify2-tests-clang_clang_target := true
199
200fortify2-tests-clang_cflags_host := -D__clang__
201
202module := fortify2-tests-clang
203module_tag := optional
204build_type := target
205build_target := STATIC_TEST_LIBRARY
206include $(LOCAL_PATH)/Android.build.mk
207build_type := host
208include $(LOCAL_PATH)/Android.build.mk
209
210# -----------------------------------------------------------------------------
211# Library of all tests (excluding the dynamic linker tests).
212# -----------------------------------------------------------------------------
213libBionicTests_whole_static_libraries := \
214    libBionicStandardTests \
215    $(fortify_libs) \
216
217module := libBionicTests
218module_tag := optional
219build_type := target
220build_target := STATIC_TEST_LIBRARY
221include $(LOCAL_PATH)/Android.build.mk
222build_type := host
223include $(LOCAL_PATH)/Android.build.mk
224
225# -----------------------------------------------------------------------------
226# Library used by dlfcn tests.
227# -----------------------------------------------------------------------------
228ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64))
229no-elf-hash-table-library_src_files := \
230    empty.cpp \
231
232no-elf-hash-table-library_ldflags := \
233    -Wl,--hash-style=gnu \
234
235module := no-elf-hash-table-library
236module_tag := optional
237build_type := target
238build_target := SHARED_LIBRARY
239include $(LOCAL_PATH)/Android.build.mk
240endif
241
242# -----------------------------------------------------------------------------
243# Library used by dlext tests - with/without GNU RELRO program header
244# -----------------------------------------------------------------------------
245libdlext_test_src_files := \
246    dlext_test_library.cpp \
247
248libdlext_test_ldflags := \
249    -Wl,-z,relro \
250
251module := libdlext_test
252module_tag := optional
253build_type := target
254build_target := SHARED_LIBRARY
255include $(LOCAL_PATH)/Android.build.mk
256
257# -----------------------------------------------------------------------------
258# create symlink to libdlext_test.so for symlink test
259# -----------------------------------------------------------------------------
260libdlext_origin := $(LOCAL_INSTALLED_MODULE)
261libdlext_sym := $(subst libdlext_test,libdlext_test_v2,$(libdlext_origin))
262$(libdlext_sym): $(libdlext_origin)
263	@echo "Symlink: $@ -> $(notdir $<)"
264	@mkdir -p $(dir $@)
265	$(hide) ln -sf $(notdir $<) $@
266
267ALL_MODULES := \
268  $(ALL_MODULES) $(libdlext_sym)
269
270ifneq ($(TARGET_2ND_ARCH),)
271# link 64 bit .so
272libdlext_origin := $(TARGET_OUT)/lib64/libdlext_test.so
273libdlext_sym := $(subst libdlext_test,libdlext_test_v2,$(libdlext_origin))
274$(libdlext_sym): $(libdlext_origin)
275	@echo "Symlink: $@ -> $(notdir $<)"
276	@mkdir -p $(dir $@)
277	$(hide) ln -sf $(notdir $<) $@
278
279ALL_MODULES := \
280  $(ALL_MODULES) $(libdlext_sym)
281endif
282
283libdlext_test_norelro_src_files := \
284    dlext_test_library.cpp \
285
286libdlext_test_norelro_ldflags := \
287    -Wl,-z,norelro \
288
289module := libdlext_test_norelro
290module_tag := optional
291build_type := target
292build_target := SHARED_LIBRARY
293include $(LOCAL_PATH)/Android.build.mk
294
295# -----------------------------------------------------------------------------
296# Library used by dlfcn tests
297# -----------------------------------------------------------------------------
298libtest_simple_src_files := \
299    dlopen_testlib_simple.cpp
300
301module := libtest_simple
302build_type := target
303build_target := SHARED_LIBRARY
304include $(LOCAL_PATH)/Android.build.mk
305
306
307# -----------------------------------------------------------------------------
308# Library used by atexit tests
309# -----------------------------------------------------------------------------
310
311libtest_atexit_src_files := \
312    atexit_testlib.cpp
313
314module := libtest_atexit
315build_target := SHARED_LIBRARY
316build_type := target
317include $(LOCAL_PATH)/Android.build.mk
318build_type := host
319include $(LOCAL_PATH)/Android.build.mk
320
321# -----------------------------------------------------------------------------
322# Tests for the device using bionic's .so. Run with:
323#   adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
324# -----------------------------------------------------------------------------
325bionic-unit-tests_whole_static_libraries := \
326    libBionicTests \
327
328bionic-unit-tests_src_files := \
329    atexit_test.cpp \
330    dlext_test.cpp \
331    dlfcn_test.cpp \
332
333bionic-unit-tests_cppflags := \
334    $(test_cppflags)
335
336bionic-unit-tests_ldflags := \
337    -Wl,--export-dynamic \
338    -Wl,-u,DlSymTestFunction \
339
340bionic-unit-tests_c_includes := \
341    $(call include-path-for, libpagemap) \
342
343bionic-unit-tests_shared_libraries_target := \
344    libdl \
345    libpagemap \
346
347module := bionic-unit-tests
348module_tag := optional
349bionic-unit-tests_multilib := both
350build_type := target
351build_target := NATIVE_TEST
352include $(LOCAL_PATH)/Android.build.mk
353
354# -----------------------------------------------------------------------------
355# Tests for the device linked against bionic's static library. Run with:
356#   adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
357# -----------------------------------------------------------------------------
358bionic-unit-tests-static_whole_static_libraries := \
359    libBionicTests \
360
361bionic-unit-tests-static_static_libraries := \
362    libstlport_static \
363    libm \
364    libc \
365    libstdc++ \
366
367bionic-unit-tests-static_force_static_executable := true
368
369module := bionic-unit-tests-static
370module_tag := optional
371bionic-unit-tests-static_multilib := both
372build_type := target
373build_target := NATIVE_TEST
374include $(LOCAL_PATH)/Android.build.mk
375
376# -----------------------------------------------------------------------------
377# Tests to run on the host and linked against glibc. Run with:
378#   cd bionic/tests; mm bionic-unit-tests-glibc-run
379# -----------------------------------------------------------------------------
380
381ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
382
383bionic-unit-tests-glibc_src_files := \
384    atexit_test.cpp \
385
386bionic-unit-tests-glibc_whole_static_libraries := \
387    libBionicStandardTests \
388
389bionic-unit-tests-glibc_ldlibs := \
390    -lrt -ldl \
391
392bionic-unit-tests-glibc_cppflags := \
393    $(test_cppflags)
394
395module := bionic-unit-tests-glibc
396module_tag := optional
397bionic-unit-tests-glibc_multilib := both
398build_type := host
399build_target := NATIVE_TEST
400include $(LOCAL_PATH)/Android.build.mk
401
402ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86))
403LINKER = linker64
404NATIVE_TEST_SUFFIX=64
405else
406LINKER = linker
407NATIVE_TEST_SUFFIX=32
408endif
409
410# gtest needs ANDROID_DATA/local/tmp for death test output.
411# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
412# Use the current target out directory as ANDROID_DATA.
413# BIONIC_TEST_FLAGS is either empty or it comes from the user.
414bionic-unit-tests-glibc-run: bionic-unit-tests-glibc
415	mkdir -p $(TARGET_OUT_DATA)/local/tmp
416	ANDROID_DATA=$(TARGET_OUT_DATA) \
417	ANDROID_ROOT=$(TARGET_OUT) \
418		$(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
419
420# -----------------------------------------------------------------------------
421# Run the unit tests built against x86 bionic on an x86 host.
422# -----------------------------------------------------------------------------
423
424ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
425# gtest needs ANDROID_DATA/local/tmp for death test output.
426# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
427# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
428# BIONIC_TEST_FLAGS is either empty or it comes from the user.
429bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
430	if [ ! -d /system -o ! -d /system/bin ]; then \
431	  echo "Attempting to create /system/bin"; \
432	  sudo mkdir -p -m 0777 /system/bin; \
433	fi
434	mkdir -p $(TARGET_OUT_DATA)/local/tmp
435	cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
436	cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
437	ANDROID_DATA=$(TARGET_OUT_DATA) \
438	ANDROID_ROOT=$(TARGET_OUT) \
439	LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
440		$(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
441endif
442
443endif # linux-x86
444
445endif # !BUILD_TINY_ANDROID
446