Android.mk revision e9f7a9c340a3af11de720042fdc5061b65dc9b78
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
118libBionicStandardTests_cppflags := \
119    $(test_cppflags) \
120
121libBionicStandardTests_ldlibs_host := \
122    -lrt \
123
124libBionicStandardTests_whole_static_libraries := \
125    libBionicUnwindTest \
126
127module := libBionicStandardTests
128module_tag := optional
129build_type := target
130build_target := STATIC_TEST_LIBRARY
131include $(LOCAL_PATH)/Android.build.mk
132build_type := host
133include $(LOCAL_PATH)/Android.build.mk
134
135# -----------------------------------------------------------------------------
136# Special stack unwinding test library compiled with special flags.
137# -----------------------------------------------------------------------------
138libBionicUnwindTest_cflags := \
139    $(test_cflags) \
140    -fexceptions \
141    -fnon-call-exceptions \
142
143libBionicUnwindTest_src_files := \
144    stack_unwinding_test_impl.c \
145
146module := libBionicUnwindTest
147module_tag := optional
148build_type := target
149build_target := STATIC_TEST_LIBRARY
150include $(LOCAL_PATH)/Android.build.mk
151build_type := host
152include $(LOCAL_PATH)/Android.build.mk
153
154# -----------------------------------------------------------------------------
155# Fortify tests.
156# -----------------------------------------------------------------------------
157$(foreach compiler,gcc clang, \
158  $(foreach test,1 2, \
159    $(eval fortify$(test)-tests-$(compiler)_cflags := \
160      $(test_cflags) \
161      -U_FORTIFY_SOURCE \
162      -D_FORTIFY_SOURCE=$(test) \
163      -DTEST_NAME=Fortify$(test)_$(compiler)); \
164    $(eval fortify$(test)-tests-$(compiler)_cflags_host := \
165      -Wno-error); \
166    $(eval fortify$(test)-tests-$(compiler)_src_files := \
167      fortify_test.cpp); \
168    $(eval fortify_libs += fortify$(test)-tests-$(compiler)); \
169  ) \
170)
171
172module := fortify1-tests-gcc
173module_tag := optional
174build_type := target
175build_target := STATIC_TEST_LIBRARY
176include $(LOCAL_PATH)/Android.build.mk
177build_type := host
178include $(LOCAL_PATH)/Android.build.mk
179
180module := fortify2-tests-gcc
181module_tag := optional
182build_type := target
183build_target := STATIC_TEST_LIBRARY
184include $(LOCAL_PATH)/Android.build.mk
185build_type := host
186include $(LOCAL_PATH)/Android.build.mk
187
188fortify1-tests-clang_clang_target := true
189fortify1-tests-clang_cflags_host := -D__clang__
190
191module := fortify1-tests-clang
192module_tag := optional
193build_type := target
194build_target := STATIC_TEST_LIBRARY
195include $(LOCAL_PATH)/Android.build.mk
196build_type := host
197include $(LOCAL_PATH)/Android.build.mk
198
199fortify2-tests-clang_clang_target := true
200
201fortify2-tests-clang_cflags_host := -D__clang__
202
203module := fortify2-tests-clang
204module_tag := optional
205build_type := target
206build_target := STATIC_TEST_LIBRARY
207include $(LOCAL_PATH)/Android.build.mk
208build_type := host
209include $(LOCAL_PATH)/Android.build.mk
210
211# -----------------------------------------------------------------------------
212# Library of all tests (excluding the dynamic linker tests).
213# -----------------------------------------------------------------------------
214libBionicTests_whole_static_libraries := \
215    libBionicStandardTests \
216    $(fortify_libs) \
217
218module := libBionicTests
219module_tag := optional
220build_type := target
221build_target := STATIC_TEST_LIBRARY
222include $(LOCAL_PATH)/Android.build.mk
223build_type := host
224include $(LOCAL_PATH)/Android.build.mk
225
226# -----------------------------------------------------------------------------
227# Library used by dlfcn tests.
228# -----------------------------------------------------------------------------
229ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64))
230no-elf-hash-table-library_src_files := \
231    empty.cpp \
232
233no-elf-hash-table-library_ldflags := \
234    -Wl,--hash-style=gnu \
235
236module := no-elf-hash-table-library
237module_tag := optional
238build_type := target
239build_target := SHARED_LIBRARY
240include $(LOCAL_PATH)/Android.build.mk
241endif
242
243# -----------------------------------------------------------------------------
244# Library used by dlext tests - with/without GNU RELRO program header
245# -----------------------------------------------------------------------------
246libdlext_test_src_files := \
247    dlext_test_library.cpp \
248
249libdlext_test_ldflags := \
250    -Wl,-z,relro \
251
252module := libdlext_test
253module_tag := optional
254build_type := target
255build_target := SHARED_LIBRARY
256include $(LOCAL_PATH)/Android.build.mk
257
258# -----------------------------------------------------------------------------
259# create symlink to libdlext_test.so for symlink test
260# -----------------------------------------------------------------------------
261# Use = instead of := to defer the evaluation of $@
262$(LOCAL_INSTALLED_MODULE): PRIVATE_POST_INSTALL_CMD = \
263    $(hide) cd $(dir $@) && ln -sf $(notdir $@) libdlext_test_v2.so
264ifneq ($(TARGET_2ND_ARCH),)
265# link 64 bit .so
266$(TARGET_OUT)/lib64/libdlext_test.so: PRIVATE_POST_INSTALL_CMD = \
267    $(hide) cd $(dir $@) && ln -sf $(notdir $@) libdlext_test_v2.so
268endif
269
270libdlext_test_norelro_src_files := \
271    dlext_test_library.cpp \
272
273libdlext_test_norelro_ldflags := \
274    -Wl,-z,norelro \
275
276module := libdlext_test_norelro
277module_tag := optional
278build_type := target
279build_target := SHARED_LIBRARY
280include $(LOCAL_PATH)/Android.build.mk
281
282# -----------------------------------------------------------------------------
283# Library used by dlfcn tests
284# -----------------------------------------------------------------------------
285libtest_simple_src_files := \
286    dlopen_testlib_simple.cpp
287
288module := libtest_simple
289build_type := target
290build_target := SHARED_LIBRARY
291include $(LOCAL_PATH)/Android.build.mk
292
293
294# -----------------------------------------------------------------------------
295# Library used by atexit tests
296# -----------------------------------------------------------------------------
297
298libtest_atexit_src_files := \
299    atexit_testlib.cpp
300
301module := libtest_atexit
302build_target := SHARED_LIBRARY
303build_type := target
304include $(LOCAL_PATH)/Android.build.mk
305build_type := host
306include $(LOCAL_PATH)/Android.build.mk
307
308# -----------------------------------------------------------------------------
309# Tests for the device using bionic's .so. Run with:
310#   adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
311# -----------------------------------------------------------------------------
312bionic-unit-tests_whole_static_libraries := \
313    libBionicTests \
314
315bionic-unit-tests_src_files := \
316    atexit_test.cpp \
317    dlext_test.cpp \
318    dlfcn_test.cpp \
319
320bionic-unit-tests_cppflags := \
321    $(test_cppflags)
322
323bionic-unit-tests_ldflags := \
324    -Wl,--export-dynamic \
325    -Wl,-u,DlSymTestFunction \
326
327bionic-unit-tests_c_includes := \
328    $(call include-path-for, libpagemap) \
329
330bionic-unit-tests_shared_libraries_target := \
331    libdl \
332    libpagemap \
333
334module := bionic-unit-tests
335module_tag := optional
336bionic-unit-tests_multilib := both
337build_type := target
338build_target := NATIVE_TEST
339include $(LOCAL_PATH)/Android.build.mk
340
341# -----------------------------------------------------------------------------
342# Tests for the device linked against bionic's static library. Run with:
343#   adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
344# -----------------------------------------------------------------------------
345bionic-unit-tests-static_whole_static_libraries := \
346    libBionicTests \
347
348bionic-unit-tests-static_static_libraries := \
349    libstlport_static \
350    libm \
351    libc \
352    libstdc++ \
353
354bionic-unit-tests-static_force_static_executable := true
355
356module := bionic-unit-tests-static
357module_tag := optional
358bionic-unit-tests-static_multilib := both
359build_type := target
360build_target := NATIVE_TEST
361include $(LOCAL_PATH)/Android.build.mk
362
363# -----------------------------------------------------------------------------
364# Tests to run on the host and linked against glibc. Run with:
365#   cd bionic/tests; mm bionic-unit-tests-glibc-run
366# -----------------------------------------------------------------------------
367
368ifeq ($(HOST_OS)-$(HOST_ARCH),$(filter $(HOST_OS)-$(HOST_ARCH),linux-x86 linux-x86_64))
369
370bionic-unit-tests-glibc_src_files := \
371    atexit_test.cpp \
372
373bionic-unit-tests-glibc_whole_static_libraries := \
374    libBionicStandardTests \
375
376bionic-unit-tests-glibc_ldlibs := \
377    -lrt -ldl \
378
379bionic-unit-tests-glibc_cppflags := \
380    $(test_cppflags)
381
382module := bionic-unit-tests-glibc
383module_tag := optional
384bionic-unit-tests-glibc_multilib := both
385build_type := host
386build_target := NATIVE_TEST
387include $(LOCAL_PATH)/Android.build.mk
388
389ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86))
390LINKER = linker64
391NATIVE_TEST_SUFFIX=64
392else
393LINKER = linker
394NATIVE_TEST_SUFFIX=32
395endif
396
397# gtest needs ANDROID_DATA/local/tmp for death test output.
398# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
399# Use the current target out directory as ANDROID_DATA.
400# BIONIC_TEST_FLAGS is either empty or it comes from the user.
401bionic-unit-tests-glibc-run: bionic-unit-tests-glibc
402	mkdir -p $(TARGET_OUT_DATA)/local/tmp
403	ANDROID_DATA=$(TARGET_OUT_DATA) \
404	ANDROID_ROOT=$(TARGET_OUT) \
405		$(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
406
407# -----------------------------------------------------------------------------
408# Run the unit tests built against x86 bionic on an x86 host.
409# -----------------------------------------------------------------------------
410
411ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
412# gtest needs ANDROID_DATA/local/tmp for death test output.
413# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
414# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
415# BIONIC_TEST_FLAGS is either empty or it comes from the user.
416bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
417	if [ ! -d /system -o ! -d /system/bin ]; then \
418	  echo "Attempting to create /system/bin"; \
419	  sudo mkdir -p -m 0777 /system/bin; \
420	fi
421	mkdir -p $(TARGET_OUT_DATA)/local/tmp
422	cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
423	cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
424	ANDROID_DATA=$(TARGET_OUT_DATA) \
425	ANDROID_ROOT=$(TARGET_OUT) \
426	LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
427		$(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
428endif
429
430endif # linux-x86
431
432endif # !BUILD_TINY_ANDROID
433