Android.mk revision fcac81ef04ade6f31eddb71bfc9a30a1ecf47840
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 -Wunused \
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    uchar_test.cpp \
112    unistd_test.cpp \
113    wchar_test.cpp \
114
115libBionicStandardTests_cflags := \
116    $(test_cflags) \
117
118ifeq ($(MALLOC_IMPL),jemalloc)
119  libBionicStandardTests_cflags += -DUSE_JEMALLOC
120else
121  libBionicStandardTests_cflags += -DUSE_DLMALLOC
122endif
123
124libBionicStandardTests_cppflags := \
125    $(test_cppflags) \
126
127libBionicStandardTests_c_includes := \
128    bionic/libc \
129
130libBionicStandardTests_ldlibs_host := \
131    -lrt \
132
133libBionicStandardTests_whole_static_libraries := \
134    libBionicUnwindTest \
135
136module := libBionicStandardTests
137module_tag := optional
138build_type := target
139build_target := STATIC_TEST_LIBRARY
140include $(LOCAL_PATH)/Android.build.mk
141build_type := host
142include $(LOCAL_PATH)/Android.build.mk
143
144# -----------------------------------------------------------------------------
145# Special stack unwinding test library compiled with special flags.
146# -----------------------------------------------------------------------------
147libBionicUnwindTest_cflags := \
148    $(test_cflags) \
149    -fexceptions \
150    -fnon-call-exceptions \
151
152libBionicUnwindTest_src_files := \
153    stack_unwinding_test_impl.c \
154
155module := libBionicUnwindTest
156module_tag := optional
157build_type := target
158build_target := STATIC_TEST_LIBRARY
159include $(LOCAL_PATH)/Android.build.mk
160build_type := host
161include $(LOCAL_PATH)/Android.build.mk
162
163# -----------------------------------------------------------------------------
164# Fortify tests.
165# -----------------------------------------------------------------------------
166$(foreach compiler,gcc clang, \
167  $(foreach test,1 2, \
168    $(eval fortify$(test)-tests-$(compiler)_cflags := \
169      $(test_cflags) \
170      -U_FORTIFY_SOURCE \
171      -D_FORTIFY_SOURCE=$(test) \
172      -DTEST_NAME=Fortify$(test)_$(compiler)); \
173    $(eval fortify$(test)-tests-$(compiler)_cflags_host := \
174      -Wno-error); \
175    $(eval fortify$(test)-tests-$(compiler)_src_files := \
176      fortify_test.cpp); \
177    $(eval fortify_libs += fortify$(test)-tests-$(compiler)); \
178  ) \
179)
180
181module := fortify1-tests-gcc
182module_tag := optional
183build_type := target
184build_target := STATIC_TEST_LIBRARY
185include $(LOCAL_PATH)/Android.build.mk
186build_type := host
187include $(LOCAL_PATH)/Android.build.mk
188
189module := fortify2-tests-gcc
190module_tag := optional
191build_type := target
192build_target := STATIC_TEST_LIBRARY
193include $(LOCAL_PATH)/Android.build.mk
194build_type := host
195include $(LOCAL_PATH)/Android.build.mk
196
197fortify1-tests-clang_clang_target := true
198fortify1-tests-clang_cflags_host := -D__clang__
199
200module := fortify1-tests-clang
201module_tag := optional
202build_type := target
203build_target := STATIC_TEST_LIBRARY
204include $(LOCAL_PATH)/Android.build.mk
205build_type := host
206include $(LOCAL_PATH)/Android.build.mk
207
208fortify2-tests-clang_clang_target := true
209
210fortify2-tests-clang_cflags_host := -D__clang__
211
212module := fortify2-tests-clang
213module_tag := optional
214build_type := target
215build_target := STATIC_TEST_LIBRARY
216include $(LOCAL_PATH)/Android.build.mk
217build_type := host
218include $(LOCAL_PATH)/Android.build.mk
219
220# -----------------------------------------------------------------------------
221# Library of all tests (excluding the dynamic linker tests).
222# -----------------------------------------------------------------------------
223libBionicTests_whole_static_libraries := \
224    libBionicStandardTests \
225    $(fortify_libs) \
226
227module := libBionicTests
228module_tag := optional
229build_type := target
230build_target := STATIC_TEST_LIBRARY
231include $(LOCAL_PATH)/Android.build.mk
232build_type := host
233include $(LOCAL_PATH)/Android.build.mk
234
235# -----------------------------------------------------------------------------
236# Tests for the device using bionic's .so. Run with:
237#   adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
238# -----------------------------------------------------------------------------
239bionic-unit-tests_whole_static_libraries := \
240    libBionicTests \
241
242bionic-unit-tests_src_files := \
243    atexit_test.cpp \
244    dlext_test.cpp \
245    dlfcn_test.cpp \
246
247bionic-unit-tests_cppflags := \
248    $(test_cppflags)
249
250bionic-unit-tests_ldflags := \
251    -Wl,--export-dynamic \
252    -Wl,-u,DlSymTestFunction \
253
254bionic-unit-tests_c_includes := \
255    $(call include-path-for, libpagemap) \
256
257bionic-unit-tests_shared_libraries_target := \
258    libdl \
259    libpagemap \
260
261module := bionic-unit-tests
262module_tag := optional
263build_type := target
264build_target := NATIVE_TEST
265include $(LOCAL_PATH)/Android.build.mk
266
267# -----------------------------------------------------------------------------
268# Tests for the device linked against bionic's static library. Run with:
269#   adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
270# -----------------------------------------------------------------------------
271bionic-unit-tests-static_whole_static_libraries := \
272    libBionicTests \
273
274bionic-unit-tests-static_static_libraries := \
275    libstlport_static \
276    libm \
277    libc \
278    libstdc++ \
279
280bionic-unit-tests-static_force_static_executable := true
281
282module := bionic-unit-tests-static
283module_tag := optional
284build_type := target
285build_target := NATIVE_TEST
286include $(LOCAL_PATH)/Android.build.mk
287
288# -----------------------------------------------------------------------------
289# Tests to run on the host and linked against glibc. Run with:
290#   cd bionic/tests; mm bionic-unit-tests-glibc-run
291# -----------------------------------------------------------------------------
292
293ifeq ($(HOST_OS)-$(HOST_ARCH),$(filter $(HOST_OS)-$(HOST_ARCH),linux-x86 linux-x86_64))
294
295bionic-unit-tests-glibc_src_files := \
296    atexit_test.cpp \
297
298bionic-unit-tests-glibc_whole_static_libraries := \
299    libBionicStandardTests \
300
301bionic-unit-tests-glibc_ldlibs := \
302    -lrt -ldl \
303
304bionic-unit-tests-glibc_cppflags := \
305    $(test_cppflags)
306
307module := bionic-unit-tests-glibc
308module_tag := optional
309build_type := host
310build_target := NATIVE_TEST
311include $(LOCAL_PATH)/Android.build.mk
312
313ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86))
314LINKER = linker64
315NATIVE_TEST_SUFFIX=64
316else
317LINKER = linker
318NATIVE_TEST_SUFFIX=32
319endif
320
321# gtest needs ANDROID_DATA/local/tmp for death test output.
322# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
323# Use the current target out directory as ANDROID_DATA.
324# BIONIC_TEST_FLAGS is either empty or it comes from the user.
325bionic-unit-tests-glibc-run: bionic-unit-tests-glibc
326	mkdir -p $(TARGET_OUT_DATA)/local/tmp
327	ANDROID_DATA=$(TARGET_OUT_DATA) \
328	ANDROID_ROOT=$(TARGET_OUT) \
329		$(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
330
331# -----------------------------------------------------------------------------
332# Run the unit tests built against x86 bionic on an x86 host.
333# -----------------------------------------------------------------------------
334
335ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
336# gtest needs ANDROID_DATA/local/tmp for death test output.
337# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
338# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
339# BIONIC_TEST_FLAGS is either empty or it comes from the user.
340bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
341	if [ ! -d /system -o ! -d /system/bin ]; then \
342	  echo "Attempting to create /system/bin"; \
343	  sudo mkdir -p -m 0777 /system/bin; \
344	fi
345	mkdir -p $(TARGET_OUT_DATA)/local/tmp
346	cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
347	cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
348	ANDROID_DATA=$(TARGET_OUT_DATA) \
349	ANDROID_ROOT=$(TARGET_OUT) \
350	LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
351		$(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
352endif
353
354endif # linux-x86
355
356include $(call first-makefiles-under,$(LOCAL_PATH))
357endif # !BUILD_TINY_ANDROID
358