blob: 4ad07ba6498b4736c29627f87a4558cd81528636 [file] [log] [blame]
Elliott Hughescc213f82012-08-14 15:32:42 -07001#
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.
Benoit Goby5ac9eee2012-08-31 19:52:15 -070015#
16
Elliott Hughese7c59f92013-12-17 20:47:06 -080017ifneq ($(BUILD_TINY_ANDROID),true)
Elliott Hughescc213f82012-08-14 15:32:42 -070018
19LOCAL_PATH := $(call my-dir)
20
Elliott Hughes7be369d2012-11-08 15:37:43 -080021# -----------------------------------------------------------------------------
Elliott Hughes7be369d2012-11-08 15:37:43 -080022# Unit tests.
23# -----------------------------------------------------------------------------
24
Christopher Ferrisf04935c2013-12-20 18:43:21 -080025ifeq ($(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 = \
Nick Kralevichdcab1b22013-01-10 17:12:29 -080035 -fstack-protector-all \
Elliott Hughesad88a082012-10-24 18:37:21 -070036 -g \
37 -Wall -Wextra \
38 -Werror \
Elliott Hughesa0ee0782013-01-30 19:06:37 -080039 -fno-builtin \
Elliott Hughesad88a082012-10-24 18:37:21 -070040
Elliott Hughes3d7a0d92014-04-29 14:46:56 -070041test_cflags += -D__STDC_LIMIT_MACROS # For glibc.
42
Dan Albertb8425c52014-04-29 17:49:06 -070043test_cppflags = \
44 -std=gnu++11 \
45
Christopher Ferrisf04935c2013-12-20 18:43:21 -080046libBionicStandardTests_src_files := \
Elliott Hughes6a41b0f2014-05-13 16:05:51 -070047 arpa_inet_test.cpp \
Christopher Ferrisb687ad32013-11-06 17:32:11 -080048 buffer_tests.cpp \
Elliott Hughesf3c73902014-04-18 10:29:16 -070049 ctype_test.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -070050 dirent_test.cpp \
Kito Cheng8baa9292013-04-03 11:29:40 +080051 eventfd_test.cpp \
Elliott Hughes06209252013-11-06 16:20:54 -080052 fcntl_test.cpp \
Elliott Hughes90e10d42012-11-02 17:05:20 -070053 fenv_test.cpp \
Calin Juravled4934a72014-02-24 16:13:50 +000054 ftw_test.cpp \
Nick Kralevich2c5153b2013-01-11 14:43:05 -080055 getauxval_test.cpp \
Elliott Hughes04a83a42012-08-16 15:59:12 -070056 getcwd_test.cpp \
Elliott Hughes74f08332013-07-02 15:23:38 -070057 inttypes_test.cpp \
Elliott Hughes8f2a5a02013-03-15 15:30:25 -070058 libc_logging_test.cpp \
Elliott Hughes58b57542012-10-29 14:27:10 -070059 libgen_test.cpp \
Pavel Chupin50282f72014-03-25 13:43:04 +040060 locale_test.cpp \
Christopher Ferris885f3b92013-05-21 17:48:01 -070061 malloc_test.cpp \
Elliott Hughesa0ee0782013-01-30 19:06:37 -080062 math_test.cpp \
Elliott Hugheseb664e22014-05-13 10:44:07 -070063 mntent_test.cpp \
Elliott Hughesd3b9d112013-02-13 08:22:07 -080064 netdb_test.cpp \
Elliott Hughesbfeab1b2012-09-05 17:47:37 -070065 pthread_test.cpp \
Elliott Hughescc213f82012-08-14 15:32:42 -070066 regex_test.cpp \
Elliott Hughes53bfdae2013-10-18 19:39:09 -070067 sched_test.cpp \
Elliott Hughesda73f652012-11-30 16:40:55 -080068 signal_test.cpp \
Elliott Hughesad88a082012-10-24 18:37:21 -070069 stack_protector_test.cpp \
Sergey Melnikovc45087b2013-01-25 16:40:13 +040070 stack_unwinding_test.cpp \
Christopher Ferrisf04935c2013-12-20 18:43:21 -080071 stack_unwinding_test_impl.c \
Calin Juravleda030de2014-02-20 13:40:36 +000072 stdint_test.cpp \
Elliott Hughes91875dc2012-09-24 17:55:15 -070073 stdio_test.cpp \
Elliott Hughes774c7f52012-10-01 13:11:03 -070074 stdlib_test.cpp \
Irina Tirdeab5f053b2012-09-08 09:17:54 +030075 string_test.cpp \
Elliott Hughes73964c52013-02-13 14:35:14 -080076 strings_test.cpp \
Kenny Root2a54e5e2012-09-13 10:52:52 -070077 stubs_test.cpp \
Elliott Hughes8c426062014-04-10 11:34:14 -070078 sstream_test.cpp \
Elliott Hughes11952072013-10-24 15:15:14 -070079 sys_epoll_test.cpp \
Elliott Hughes431166d2014-01-27 16:28:31 -080080 sys_mman_test.cpp \
Elliott Hughes0f461e32014-01-09 10:17:03 -080081 sys_resource_test.cpp \
Elliott Hughes5b9310e2013-10-02 16:59:05 -070082 sys_select_test.cpp \
Elliott Hughesb4f76162013-09-19 16:27:24 -070083 sys_sendfile_test.cpp \
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +010084 sys_socket_test.cpp \
Elliott Hughesd0be7c82013-08-08 17:13:33 -070085 sys_stat_test.cpp \
Elliott Hughesdb1ea342014-01-17 18:42:49 -080086 sys_statvfs_test.cpp \
Elliott Hughese61dc712013-11-13 13:14:31 -080087 sys_syscall_test.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -070088 sys_time_test.cpp \
Elliott Hughes894f8cb2014-01-03 14:49:37 -080089 sys_types_test.cpp \
Elliott Hughesdb1ea342014-01-17 18:42:49 -080090 sys_vfs_test.cpp \
Colin Crossb27e2002013-01-28 17:19:43 -080091 system_properties_test.cpp \
Elliott Hughese0175ca2013-03-14 14:38:08 -070092 time_test.cpp \
Elliott Hughesa55f6302013-01-02 14:23:43 -080093 unistd_test.cpp \
Elliott Hughes77e944f2014-04-04 17:34:51 -070094 wchar_test.cpp \
Elliott Hughescc213f82012-08-14 15:32:42 -070095
Christopher Ferrisf04935c2013-12-20 18:43:21 -080096libBionicStandardTests_cflags := \
97 $(test_cflags) \
jeffhaoacf5aa72012-09-12 17:25:30 -070098
Dan Albertb8425c52014-04-29 17:49:06 -070099libBionicStandardTests_cppflags := \
100 $(test_cppflags) \
101
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800102libBionicStandardTests_ldlibs_host := \
103 -lrt \
Nick Kralevich5bcf3982013-06-28 10:34:09 -0700104
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800105module := libBionicStandardTests
106module_tag := optional
107build_type := target
108build_target := STATIC_TEST_LIBRARY
109include $(LOCAL_PATH)/Android.build.mk
110build_type := host
111include $(LOCAL_PATH)/Android.build.mk
Elliott Hughesbfeab1b2012-09-05 17:47:37 -0700112
Elliott Hughes7be369d2012-11-08 15:37:43 -0800113# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800114# Fortify tests.
Christopher Ferris153d9272013-08-27 14:32:15 -0700115# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800116$(foreach compiler,gcc clang, \
117 $(foreach test,1 2, \
118 $(eval fortify$(test)-tests-$(compiler)_cflags := \
119 $(test_cflags) \
120 -U_FORTIFY_SOURCE \
121 -D_FORTIFY_SOURCE=$(test) \
122 -DTEST_NAME=Fortify$(test)_$(compiler)); \
123 $(eval fortify$(test)-tests-$(compiler)_cflags_host := \
124 -Wno-error); \
125 $(eval fortify$(test)-tests-$(compiler)_src_files := \
126 fortify_test.cpp); \
127 $(eval fortify_libs += fortify$(test)-tests-$(compiler)); \
128 ) \
129)
Christopher Ferris153d9272013-08-27 14:32:15 -0700130
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800131module := fortify1-tests-gcc
132module_tag := optional
133build_type := target
134build_target := STATIC_TEST_LIBRARY
135include $(LOCAL_PATH)/Android.build.mk
136build_type := host
137include $(LOCAL_PATH)/Android.build.mk
Christopher Ferris8240bed2013-08-29 11:37:33 -0700138
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800139module := fortify2-tests-gcc
140module_tag := optional
141build_type := target
142build_target := STATIC_TEST_LIBRARY
143include $(LOCAL_PATH)/Android.build.mk
144build_type := host
145include $(LOCAL_PATH)/Android.build.mk
Christopher Ferris8240bed2013-08-29 11:37:33 -0700146
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800147fortify1-tests-clang_clang_target := true
148fortify1-tests-clang_cflags_host := -D__clang__
Christopher Ferris8240bed2013-08-29 11:37:33 -0700149
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800150module := fortify1-tests-clang
151module_tag := optional
152build_type := target
153build_target := STATIC_TEST_LIBRARY
154include $(LOCAL_PATH)/Android.build.mk
155build_type := host
156include $(LOCAL_PATH)/Android.build.mk
157
158fortify2-tests-clang_clang_target := true
159
160fortify2-tests-clang_cflags_host := -D__clang__
161
162module := fortify2-tests-clang
163module_tag := optional
164build_type := target
165build_target := STATIC_TEST_LIBRARY
166include $(LOCAL_PATH)/Android.build.mk
167build_type := host
168include $(LOCAL_PATH)/Android.build.mk
Christopher Ferris153d9272013-08-27 14:32:15 -0700169
170# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800171# Library of all tests (excluding the dynamic linker tests).
Elliott Hughes7be369d2012-11-08 15:37:43 -0800172# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800173libBionicTests_whole_static_libraries := \
174 libBionicStandardTests \
175 $(fortify_libs) \
Elliott Hughes124fae92012-10-31 14:20:03 -0700176
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800177module := libBionicTests
178module_tag := optional
179build_type := target
180build_target := STATIC_TEST_LIBRARY
181include $(LOCAL_PATH)/Android.build.mk
182build_type := host
183include $(LOCAL_PATH)/Android.build.mk
184
185# -----------------------------------------------------------------------------
186# Library used by dlfcn tests.
187# -----------------------------------------------------------------------------
188ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64))
189no-elf-hash-table-library_src_files := \
190 empty.cpp \
191
192no-elf-hash-table-library_ldflags := \
193 -Wl,--hash-style=gnu \
194
195module := no-elf-hash-table-library
196module_tag := optional
197build_type := target
198build_target := SHARED_LIBRARY
199include $(LOCAL_PATH)/Android.build.mk
Elliott Hughesa43e9062013-01-07 14:18:22 -0800200endif
Elliott Hughes124fae92012-10-31 14:20:03 -0700201
Elliott Hughes7be369d2012-11-08 15:37:43 -0800202# -----------------------------------------------------------------------------
Torne (Richard Coles)26ec9672014-04-30 15:48:40 +0100203# Library used by dlext tests - with/without GNU RELRO program header
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000204# -----------------------------------------------------------------------------
205libdlext_test_src_files := \
206 dlext_test_library.cpp \
207
Torne (Richard Coles)26ec9672014-04-30 15:48:40 +0100208libdlext_test_ldflags := \
209 -Wl,-z,relro \
210
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000211module := libdlext_test
212module_tag := optional
213build_type := target
214build_target := SHARED_LIBRARY
215include $(LOCAL_PATH)/Android.build.mk
216
Dmitriy Ivanov7db18092014-05-08 12:27:25 -0700217# -----------------------------------------------------------------------------
218# create symlink to libdlext_test.so for symlink test
219# -----------------------------------------------------------------------------
220libdlext_origin := $(LOCAL_INSTALLED_MODULE)
221libdlext_sym := $(subst libdlext_test,libdlext_test_v2,$(libdlext_origin))
222$(libdlext_sym): $(libdlext_origin)
223 @echo "Symlink: $@ -> $(notdir $<)"
224 @mkdir -p $(dir $@)
225 $(hide) ln -sf $(notdir $<) $@
226
227ALL_MODULES := \
228 $(ALL_MODULES) $(libdlext_sym)
229
Torne (Richard Coles)26ec9672014-04-30 15:48:40 +0100230libdlext_test_norelro_src_files := \
231 dlext_test_library.cpp \
232
233libdlext_test_norelro_ldflags := \
234 -Wl,-z,norelro \
235
236module := libdlext_test_norelro
237module_tag := optional
238build_type := target
239build_target := SHARED_LIBRARY
240include $(LOCAL_PATH)/Android.build.mk
241
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000242# -----------------------------------------------------------------------------
Dmitriy Ivanov6396da92014-05-05 19:52:13 -0700243# Library used by atexit tests
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700244# -----------------------------------------------------------------------------
245
246libtest_atexit_src_files := \
247 atexit_testlib.cpp
248
249module := libtest_atexit
250build_type := target
251build_target := SHARED_LIBRARY
252include $(LOCAL_PATH)/Android.build.mk
253
254# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800255# Tests for the device using bionic's .so. Run with:
256# adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
Elliott Hughes7be369d2012-11-08 15:37:43 -0800257# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800258bionic-unit-tests_whole_static_libraries := \
259 libBionicTests \
Elliott Hughes124fae92012-10-31 14:20:03 -0700260
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800261bionic-unit-tests_src_files := \
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700262 atexit_test.cpp \
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000263 dlext_test.cpp \
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800264 dlfcn_test.cpp \
265
Dmitriy Ivanov6396da92014-05-05 19:52:13 -0700266bionic-unit-tests_cppflags := \
267 $(test_cppflags)
268
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800269bionic-unit-tests_ldflags := \
270 -Wl,--export-dynamic \
271 -Wl,-u,DlSymTestFunction \
272
Torne (Richard Coles)26052612014-05-02 14:57:42 +0100273bionic-unit-tests_c_includes := \
274 $(call include-path-for, libpagemap) \
275
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800276bionic-unit-tests_shared_libraries_target := \
277 libdl \
Torne (Richard Coles)26052612014-05-02 14:57:42 +0100278 libpagemap \
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800279
280module := bionic-unit-tests
281module_tag := optional
Christopher Ferris50909642014-04-28 21:10:37 -0700282bionic-unit-tests_multilib := both
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800283build_type := target
284build_target := NATIVE_TEST
285include $(LOCAL_PATH)/Android.build.mk
286
287# -----------------------------------------------------------------------------
288# Tests for the device linked against bionic's static library. Run with:
289# adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
290# -----------------------------------------------------------------------------
291bionic-unit-tests-static_whole_static_libraries := \
292 libBionicTests \
293
294bionic-unit-tests-static_static_libraries := \
295 libstlport_static \
296 libm \
297 libc \
298 libstdc++ \
299
300bionic-unit-tests-static_force_static_executable := true
301
302module := bionic-unit-tests-static
303module_tag := optional
Christopher Ferris50909642014-04-28 21:10:37 -0700304bionic-unit-tests-static_multilib := both
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800305build_type := target
306build_target := NATIVE_TEST
307include $(LOCAL_PATH)/Android.build.mk
308
309# -----------------------------------------------------------------------------
310# Tests to run on the host and linked against glibc. Run with:
311# cd bionic/tests; mm bionic-unit-tests-glibc-run
312# -----------------------------------------------------------------------------
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700313
314ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700315
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700316bionic-unit-tests-glibc_src_files := \
317 atexit_test.cpp \
318
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800319bionic-unit-tests-glibc_whole_static_libraries := \
320 libBionicStandardTests \
321
322bionic-unit-tests-glibc_ldlibs := \
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700323 -lrt -ldl \
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800324
Dmitriy Ivanov6396da92014-05-05 19:52:13 -0700325bionic-unit-tests-glibc_cppflags := \
326 $(test_cppflags)
327
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800328module := bionic-unit-tests-glibc
329module_tag := optional
Calin Juravle0e9d7fc2014-05-07 19:06:30 +0100330bionic-unit-tests-glibc_multilib := both
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800331build_type := host
332build_target := NATIVE_TEST
333include $(LOCAL_PATH)/Android.build.mk
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700334
Elliott Hughes0c567f12014-04-22 19:21:32 -0700335ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86))
336LINKER = linker64
337NATIVE_TEST_SUFFIX=64
338else
339LINKER = linker
340NATIVE_TEST_SUFFIX=32
341endif
342
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700343# gtest needs ANDROID_DATA/local/tmp for death test output.
344# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
345# Use the current target out directory as ANDROID_DATA.
Calin Juravle72270662014-03-19 17:45:08 +0000346# BIONIC_TEST_FLAGS is either empty or it comes from the user.
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700347bionic-unit-tests-glibc-run: bionic-unit-tests-glibc
348 mkdir -p $(TARGET_OUT_DATA)/local/tmp
349 ANDROID_DATA=$(TARGET_OUT_DATA) \
350 ANDROID_ROOT=$(TARGET_OUT) \
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700351 $(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
Benoit Goby5ac9eee2012-08-31 19:52:15 -0700352
Nick Kralevich16d1af12013-06-17 14:49:19 -0700353# -----------------------------------------------------------------------------
Pavel Chupinf22fb682013-09-06 18:43:27 +0400354# Run the unit tests built against x86 bionic on an x86 host.
355# -----------------------------------------------------------------------------
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700356
Elliott Hughes0c567f12014-04-22 19:21:32 -0700357ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700358# gtest needs ANDROID_DATA/local/tmp for death test output.
359# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
Pavel Chupinf22fb682013-09-06 18:43:27 +0400360# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
Calin Juravle72270662014-03-19 17:45:08 +0000361# BIONIC_TEST_FLAGS is either empty or it comes from the user.
Pavel Chupin17558de2013-10-17 14:41:34 +0400362bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700363 if [ ! -d /system -o ! -d /system/bin ]; then \
364 echo "Attempting to create /system/bin"; \
365 sudo mkdir -p -m 0777 /system/bin; \
366 fi
Pavel Chupinf22fb682013-09-06 18:43:27 +0400367 mkdir -p $(TARGET_OUT_DATA)/local/tmp
Pavel Chupin17558de2013-10-17 14:41:34 +0400368 cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
Elliott Hughese60c4f02013-09-19 11:28:20 -0700369 cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
Pavel Chupinf22fb682013-09-06 18:43:27 +0400370 ANDROID_DATA=$(TARGET_OUT_DATA) \
371 ANDROID_ROOT=$(TARGET_OUT) \
Pavel Chupinf22fb682013-09-06 18:43:27 +0400372 LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700373 $(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
Pavel Chupinf22fb682013-09-06 18:43:27 +0400374endif
Elliott Hughes0c567f12014-04-22 19:21:32 -0700375
376endif # linux-x86
Pavel Chupinf22fb682013-09-06 18:43:27 +0400377
Benoit Goby5ac9eee2012-08-31 19:52:15 -0700378endif # !BUILD_TINY_ANDROID