Android.mk revision 722706672617d009279a8485b895bd3389de0396
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
41libBionicStandardTests_src_files := \
42    buffer_tests.cpp \
43    dirent_test.cpp \
44    eventfd_test.cpp \
45    fcntl_test.cpp \
46    fenv_test.cpp \
47    ftw_test.cpp \
48    getauxval_test.cpp \
49    getcwd_test.cpp \
50    inttypes_test.cpp \
51    libc_logging_test.cpp \
52    libgen_test.cpp \
53    malloc_test.cpp \
54    math_test.cpp \
55    netdb_test.cpp \
56    pthread_test.cpp \
57    regex_test.cpp \
58    sched_test.cpp \
59    signal_test.cpp \
60    stack_protector_test.cpp \
61    stack_unwinding_test.cpp \
62    stack_unwinding_test_impl.c \
63    stdint_test.cpp \
64    stdio_test.cpp \
65    stdlib_test.cpp \
66    string_test.cpp \
67    strings_test.cpp \
68    stubs_test.cpp \
69    sys_epoll_test.cpp \
70    sys_mman_test.cpp \
71    sys_resource_test.cpp \
72    sys_select_test.cpp \
73    sys_sendfile_test.cpp \
74    sys_socket_test.cpp \
75    sys_stat_test.cpp \
76    sys_statvfs_test.cpp \
77    sys_syscall_test.cpp \
78    sys_time_test.cpp \
79    sys_types_test.cpp \
80    sys_vfs_test.cpp \
81    system_properties_test.cpp \
82    time_test.cpp \
83    unistd_test.cpp \
84
85libBionicStandardTests_cflags := \
86    $(test_cflags) \
87
88libBionicStandardTests_ldlibs_host := \
89    -lrt \
90
91module := libBionicStandardTests
92module_tag := optional
93build_type := target
94build_target := STATIC_TEST_LIBRARY
95include $(LOCAL_PATH)/Android.build.mk
96build_type := host
97include $(LOCAL_PATH)/Android.build.mk
98
99# -----------------------------------------------------------------------------
100# Fortify tests.
101# -----------------------------------------------------------------------------
102$(foreach compiler,gcc clang, \
103  $(foreach test,1 2, \
104    $(eval fortify$(test)-tests-$(compiler)_cflags := \
105      $(test_cflags) \
106      -U_FORTIFY_SOURCE \
107      -D_FORTIFY_SOURCE=$(test) \
108      -DTEST_NAME=Fortify$(test)_$(compiler)); \
109    $(eval fortify$(test)-tests-$(compiler)_cflags_host := \
110      -Wno-error); \
111    $(eval fortify$(test)-tests-$(compiler)_src_files := \
112      fortify_test.cpp); \
113    $(eval fortify_libs += fortify$(test)-tests-$(compiler)); \
114  ) \
115)
116
117module := fortify1-tests-gcc
118module_tag := optional
119build_type := target
120build_target := STATIC_TEST_LIBRARY
121include $(LOCAL_PATH)/Android.build.mk
122build_type := host
123include $(LOCAL_PATH)/Android.build.mk
124
125module := fortify2-tests-gcc
126module_tag := optional
127build_type := target
128build_target := STATIC_TEST_LIBRARY
129include $(LOCAL_PATH)/Android.build.mk
130build_type := host
131include $(LOCAL_PATH)/Android.build.mk
132
133fortify1-tests-clang_clang_target := true
134fortify1-tests-clang_cflags_host := -D__clang__
135
136module := fortify1-tests-clang
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
144fortify2-tests-clang_clang_target := true
145
146fortify2-tests-clang_cflags_host := -D__clang__
147
148module := fortify2-tests-clang
149module_tag := optional
150build_type := target
151build_target := STATIC_TEST_LIBRARY
152include $(LOCAL_PATH)/Android.build.mk
153build_type := host
154include $(LOCAL_PATH)/Android.build.mk
155
156# -----------------------------------------------------------------------------
157# Library of all tests (excluding the dynamic linker tests).
158# -----------------------------------------------------------------------------
159libBionicTests_whole_static_libraries := \
160    libBionicStandardTests \
161    $(fortify_libs) \
162
163module := libBionicTests
164module_tag := optional
165build_type := target
166build_target := STATIC_TEST_LIBRARY
167include $(LOCAL_PATH)/Android.build.mk
168build_type := host
169include $(LOCAL_PATH)/Android.build.mk
170
171# -----------------------------------------------------------------------------
172# Library used by dlfcn tests.
173# -----------------------------------------------------------------------------
174ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64))
175no-elf-hash-table-library_src_files := \
176    empty.cpp \
177
178no-elf-hash-table-library_ldflags := \
179    -Wl,--hash-style=gnu \
180
181module := no-elf-hash-table-library
182module_tag := optional
183build_type := target
184build_target := SHARED_LIBRARY
185include $(LOCAL_PATH)/Android.build.mk
186endif
187
188# -----------------------------------------------------------------------------
189# Tests for the device using bionic's .so. Run with:
190#   adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
191# -----------------------------------------------------------------------------
192bionic-unit-tests_whole_static_libraries := \
193    libBionicTests \
194
195bionic-unit-tests_src_files := \
196    dlfcn_test.cpp \
197
198bionic-unit-tests_ldflags := \
199    -Wl,--export-dynamic \
200    -Wl,-u,DlSymTestFunction \
201
202bionic-unit-tests_shared_libraries_target := \
203    libdl \
204
205module := bionic-unit-tests
206module_tag := optional
207build_type := target
208build_target := NATIVE_TEST
209include $(LOCAL_PATH)/Android.build.mk
210
211# -----------------------------------------------------------------------------
212# Tests for the device linked against bionic's static library. Run with:
213#   adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
214# -----------------------------------------------------------------------------
215bionic-unit-tests-static_whole_static_libraries := \
216    libBionicTests \
217
218bionic-unit-tests-static_static_libraries := \
219    libstlport_static \
220    libm \
221    libc \
222    libstdc++ \
223
224bionic-unit-tests-static_force_static_executable := true
225
226module := bionic-unit-tests-static
227module_tag := optional
228build_type := target
229build_target := NATIVE_TEST
230include $(LOCAL_PATH)/Android.build.mk
231
232# -----------------------------------------------------------------------------
233# Tests to run on the host and linked against glibc. Run with:
234#   cd bionic/tests; mm bionic-unit-tests-glibc-run
235# -----------------------------------------------------------------------------
236bionic-unit-tests-glibc_whole_static_libraries := \
237    libBionicStandardTests \
238
239bionic-unit-tests-glibc_ldlibs := \
240    -lrt \
241
242module := bionic-unit-tests-glibc
243module_tag := optional
244build_type := host
245build_target := NATIVE_TEST
246include $(LOCAL_PATH)/Android.build.mk
247
248# gtest needs ANDROID_DATA/local/tmp for death test output.
249# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
250# Use the current target out directory as ANDROID_DATA.
251# BIONIC_TEST_FLAGS is either empty or it comes from the user.
252bionic-unit-tests-glibc-run: bionic-unit-tests-glibc
253	mkdir -p $(TARGET_OUT_DATA)/local/tmp
254	ANDROID_DATA=$(TARGET_OUT_DATA) \
255	ANDROID_ROOT=$(TARGET_OUT) \
256		$(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc $(BIONIC_TEST_FLAGS)
257
258# -----------------------------------------------------------------------------
259# Run the unit tests built against x86 bionic on an x86 host.
260# -----------------------------------------------------------------------------
261ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
262ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
263ifeq ($(TARGET_ARCH),x86)
264LINKER = linker
265else
266LINKER = linker64
267endif
268# gtest needs ANDROID_DATA/local/tmp for death test output.
269# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
270# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
271# BIONIC_TEST_FLAGS is either empty or it comes from the user.
272bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
273	if [ ! -d /system -o ! -d /system/bin ]; then \
274	  echo "Attempting to create /system/bin"; \
275	  sudo mkdir -p -m 0777 /system/bin; \
276	fi
277	mkdir -p $(TARGET_OUT_DATA)/local/tmp
278	cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
279	cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
280	ANDROID_DATA=$(TARGET_OUT_DATA) \
281	ANDROID_ROOT=$(TARGET_OUT) \
282	LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
283		$(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests $(BIONIC_TEST_FLAGS)
284endif
285endif
286
287endif # !BUILD_TINY_ANDROID
288