blob: 9db372ad02e647d89f751f1052df0880f48dbb38 [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 := \
Christopher Ferrisb687ad32013-11-06 17:32:11 -080047 buffer_tests.cpp \
Elliott Hughesf3c73902014-04-18 10:29:16 -070048 ctype_test.cpp \
Elliott Hughes063cfb22012-10-25 20:55:23 -070049 dirent_test.cpp \
Kito Cheng8baa9292013-04-03 11:29:40 +080050 eventfd_test.cpp \
Elliott Hughes06209252013-11-06 16:20:54 -080051 fcntl_test.cpp \
Elliott Hughes90e10d42012-11-02 17:05:20 -070052 fenv_test.cpp \
Calin Juravled4934a72014-02-24 16:13:50 +000053 ftw_test.cpp \
Nick Kralevich2c5153b2013-01-11 14:43:05 -080054 getauxval_test.cpp \
Elliott Hughes04a83a42012-08-16 15:59:12 -070055 getcwd_test.cpp \
Elliott Hughes74f08332013-07-02 15:23:38 -070056 inttypes_test.cpp \
Elliott Hughes8f2a5a02013-03-15 15:30:25 -070057 libc_logging_test.cpp \
Elliott Hughes58b57542012-10-29 14:27:10 -070058 libgen_test.cpp \
Pavel Chupin50282f72014-03-25 13:43:04 +040059 locale_test.cpp \
Christopher Ferris885f3b92013-05-21 17:48:01 -070060 malloc_test.cpp \
Elliott Hughesa0ee0782013-01-30 19:06:37 -080061 math_test.cpp \
Elliott Hughesd3b9d112013-02-13 08:22:07 -080062 netdb_test.cpp \
Elliott Hughesbfeab1b2012-09-05 17:47:37 -070063 pthread_test.cpp \
Elliott Hughescc213f82012-08-14 15:32:42 -070064 regex_test.cpp \
Elliott Hughes53bfdae2013-10-18 19:39:09 -070065 sched_test.cpp \
Elliott Hughesda73f652012-11-30 16:40:55 -080066 signal_test.cpp \
Elliott Hughesad88a082012-10-24 18:37:21 -070067 stack_protector_test.cpp \
Sergey Melnikovc45087b2013-01-25 16:40:13 +040068 stack_unwinding_test.cpp \
Christopher Ferrisf04935c2013-12-20 18:43:21 -080069 stack_unwinding_test_impl.c \
Calin Juravleda030de2014-02-20 13:40:36 +000070 stdint_test.cpp \
Elliott Hughes91875dc2012-09-24 17:55:15 -070071 stdio_test.cpp \
Elliott Hughes774c7f52012-10-01 13:11:03 -070072 stdlib_test.cpp \
Irina Tirdeab5f053b2012-09-08 09:17:54 +030073 string_test.cpp \
Elliott Hughes73964c52013-02-13 14:35:14 -080074 strings_test.cpp \
Kenny Root2a54e5e2012-09-13 10:52:52 -070075 stubs_test.cpp \
Elliott Hughes8c426062014-04-10 11:34:14 -070076 sstream_test.cpp \
Elliott Hughes11952072013-10-24 15:15:14 -070077 sys_epoll_test.cpp \
Elliott Hughes431166d2014-01-27 16:28:31 -080078 sys_mman_test.cpp \
Elliott Hughes0f461e32014-01-09 10:17:03 -080079 sys_resource_test.cpp \
Elliott Hughes5b9310e2013-10-02 16:59:05 -070080 sys_select_test.cpp \
Elliott Hughesb4f76162013-09-19 16:27:24 -070081 sys_sendfile_test.cpp \
Guillaume Ranquet6ff0c752014-02-10 13:11:29 +010082 sys_socket_test.cpp \
Elliott Hughesd0be7c82013-08-08 17:13:33 -070083 sys_stat_test.cpp \
Elliott Hughesdb1ea342014-01-17 18:42:49 -080084 sys_statvfs_test.cpp \
Elliott Hughese61dc712013-11-13 13:14:31 -080085 sys_syscall_test.cpp \
Elliott Hughesf8fcfbc2013-10-22 13:28:46 -070086 sys_time_test.cpp \
Elliott Hughes894f8cb2014-01-03 14:49:37 -080087 sys_types_test.cpp \
Elliott Hughesdb1ea342014-01-17 18:42:49 -080088 sys_vfs_test.cpp \
Colin Crossb27e2002013-01-28 17:19:43 -080089 system_properties_test.cpp \
Elliott Hughese0175ca2013-03-14 14:38:08 -070090 time_test.cpp \
Elliott Hughesa55f6302013-01-02 14:23:43 -080091 unistd_test.cpp \
Elliott Hughes77e944f2014-04-04 17:34:51 -070092 wchar_test.cpp \
Elliott Hughescc213f82012-08-14 15:32:42 -070093
Christopher Ferrisf04935c2013-12-20 18:43:21 -080094libBionicStandardTests_cflags := \
95 $(test_cflags) \
jeffhaoacf5aa72012-09-12 17:25:30 -070096
Dan Albertb8425c52014-04-29 17:49:06 -070097libBionicStandardTests_cppflags := \
98 $(test_cppflags) \
99
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800100libBionicStandardTests_ldlibs_host := \
101 -lrt \
Nick Kralevich5bcf3982013-06-28 10:34:09 -0700102
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800103module := libBionicStandardTests
104module_tag := optional
105build_type := target
106build_target := STATIC_TEST_LIBRARY
107include $(LOCAL_PATH)/Android.build.mk
108build_type := host
109include $(LOCAL_PATH)/Android.build.mk
Elliott Hughesbfeab1b2012-09-05 17:47:37 -0700110
Elliott Hughes7be369d2012-11-08 15:37:43 -0800111# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800112# Fortify tests.
Christopher Ferris153d9272013-08-27 14:32:15 -0700113# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800114$(foreach compiler,gcc clang, \
115 $(foreach test,1 2, \
116 $(eval fortify$(test)-tests-$(compiler)_cflags := \
117 $(test_cflags) \
118 -U_FORTIFY_SOURCE \
119 -D_FORTIFY_SOURCE=$(test) \
120 -DTEST_NAME=Fortify$(test)_$(compiler)); \
121 $(eval fortify$(test)-tests-$(compiler)_cflags_host := \
122 -Wno-error); \
123 $(eval fortify$(test)-tests-$(compiler)_src_files := \
124 fortify_test.cpp); \
125 $(eval fortify_libs += fortify$(test)-tests-$(compiler)); \
126 ) \
127)
Christopher Ferris153d9272013-08-27 14:32:15 -0700128
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800129module := fortify1-tests-gcc
130module_tag := optional
131build_type := target
132build_target := STATIC_TEST_LIBRARY
133include $(LOCAL_PATH)/Android.build.mk
134build_type := host
135include $(LOCAL_PATH)/Android.build.mk
Christopher Ferris8240bed2013-08-29 11:37:33 -0700136
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800137module := fortify2-tests-gcc
138module_tag := optional
139build_type := target
140build_target := STATIC_TEST_LIBRARY
141include $(LOCAL_PATH)/Android.build.mk
142build_type := host
143include $(LOCAL_PATH)/Android.build.mk
Christopher Ferris8240bed2013-08-29 11:37:33 -0700144
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800145fortify1-tests-clang_clang_target := true
146fortify1-tests-clang_cflags_host := -D__clang__
Christopher Ferris8240bed2013-08-29 11:37:33 -0700147
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800148module := fortify1-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
156fortify2-tests-clang_clang_target := true
157
158fortify2-tests-clang_cflags_host := -D__clang__
159
160module := fortify2-tests-clang
161module_tag := optional
162build_type := target
163build_target := STATIC_TEST_LIBRARY
164include $(LOCAL_PATH)/Android.build.mk
165build_type := host
166include $(LOCAL_PATH)/Android.build.mk
Christopher Ferris153d9272013-08-27 14:32:15 -0700167
168# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800169# Library of all tests (excluding the dynamic linker tests).
Elliott Hughes7be369d2012-11-08 15:37:43 -0800170# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800171libBionicTests_whole_static_libraries := \
172 libBionicStandardTests \
173 $(fortify_libs) \
Elliott Hughes124fae92012-10-31 14:20:03 -0700174
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800175module := libBionicTests
176module_tag := optional
177build_type := target
178build_target := STATIC_TEST_LIBRARY
179include $(LOCAL_PATH)/Android.build.mk
180build_type := host
181include $(LOCAL_PATH)/Android.build.mk
182
183# -----------------------------------------------------------------------------
184# Library used by dlfcn tests.
185# -----------------------------------------------------------------------------
186ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64))
187no-elf-hash-table-library_src_files := \
188 empty.cpp \
189
190no-elf-hash-table-library_ldflags := \
191 -Wl,--hash-style=gnu \
192
193module := no-elf-hash-table-library
194module_tag := optional
195build_type := target
196build_target := SHARED_LIBRARY
197include $(LOCAL_PATH)/Android.build.mk
Elliott Hughesa43e9062013-01-07 14:18:22 -0800198endif
Elliott Hughes124fae92012-10-31 14:20:03 -0700199
Elliott Hughes7be369d2012-11-08 15:37:43 -0800200# -----------------------------------------------------------------------------
Torne (Richard Coles)26ec9672014-04-30 15:48:40 +0100201# Library used by dlext tests - with/without GNU RELRO program header
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000202# -----------------------------------------------------------------------------
203libdlext_test_src_files := \
204 dlext_test_library.cpp \
205
Torne (Richard Coles)26ec9672014-04-30 15:48:40 +0100206libdlext_test_ldflags := \
207 -Wl,-z,relro \
208
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000209module := libdlext_test
210module_tag := optional
211build_type := target
212build_target := SHARED_LIBRARY
213include $(LOCAL_PATH)/Android.build.mk
214
Torne (Richard Coles)26ec9672014-04-30 15:48:40 +0100215libdlext_test_norelro_src_files := \
216 dlext_test_library.cpp \
217
218libdlext_test_norelro_ldflags := \
219 -Wl,-z,norelro \
220
221module := libdlext_test_norelro
222module_tag := optional
223build_type := target
224build_target := SHARED_LIBRARY
225include $(LOCAL_PATH)/Android.build.mk
226
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000227# -----------------------------------------------------------------------------
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700228# This library used by atexit tests
229# -----------------------------------------------------------------------------
230
231libtest_atexit_src_files := \
232 atexit_testlib.cpp
233
234module := libtest_atexit
235build_type := target
236build_target := SHARED_LIBRARY
237include $(LOCAL_PATH)/Android.build.mk
238
239# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800240# Tests for the device using bionic's .so. Run with:
241# adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
Elliott Hughes7be369d2012-11-08 15:37:43 -0800242# -----------------------------------------------------------------------------
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800243bionic-unit-tests_whole_static_libraries := \
244 libBionicTests \
Elliott Hughes124fae92012-10-31 14:20:03 -0700245
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800246bionic-unit-tests_src_files := \
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700247 atexit_test.cpp \
Torne (Richard Coles)12bbb912014-02-06 14:34:21 +0000248 dlext_test.cpp \
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800249 dlfcn_test.cpp \
250
251bionic-unit-tests_ldflags := \
252 -Wl,--export-dynamic \
253 -Wl,-u,DlSymTestFunction \
254
255bionic-unit-tests_shared_libraries_target := \
256 libdl \
257
258module := bionic-unit-tests
259module_tag := optional
Christopher Ferris50909642014-04-28 21:10:37 -0700260bionic-unit-tests_multilib := both
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800261build_type := target
262build_target := NATIVE_TEST
263include $(LOCAL_PATH)/Android.build.mk
264
265# -----------------------------------------------------------------------------
266# Tests for the device linked against bionic's static library. Run with:
267# adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
268# -----------------------------------------------------------------------------
269bionic-unit-tests-static_whole_static_libraries := \
270 libBionicTests \
271
272bionic-unit-tests-static_static_libraries := \
273 libstlport_static \
274 libm \
275 libc \
276 libstdc++ \
277
278bionic-unit-tests-static_force_static_executable := true
279
280module := bionic-unit-tests-static
281module_tag := optional
Christopher Ferris50909642014-04-28 21:10:37 -0700282bionic-unit-tests-static_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 to run on the host and linked against glibc. Run with:
289# cd bionic/tests; mm bionic-unit-tests-glibc-run
290# -----------------------------------------------------------------------------
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700291
292ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700293
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700294bionic-unit-tests-glibc_src_files := \
295 atexit_test.cpp \
296
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800297bionic-unit-tests-glibc_whole_static_libraries := \
298 libBionicStandardTests \
299
300bionic-unit-tests-glibc_ldlibs := \
Dmitriy Ivanov6b566912014-04-29 08:41:29 -0700301 -lrt -ldl \
Christopher Ferrisf04935c2013-12-20 18:43:21 -0800302
303module := bionic-unit-tests-glibc
304module_tag := optional
305build_type := host
306build_target := NATIVE_TEST
307include $(LOCAL_PATH)/Android.build.mk
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700308
Elliott Hughes0c567f12014-04-22 19:21:32 -0700309ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86))
310LINKER = linker64
311NATIVE_TEST_SUFFIX=64
312else
313LINKER = linker
314NATIVE_TEST_SUFFIX=32
315endif
316
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700317# gtest needs ANDROID_DATA/local/tmp for death test output.
318# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
319# Use the current target out directory as ANDROID_DATA.
Calin Juravle72270662014-03-19 17:45:08 +0000320# BIONIC_TEST_FLAGS is either empty or it comes from the user.
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700321bionic-unit-tests-glibc-run: bionic-unit-tests-glibc
322 mkdir -p $(TARGET_OUT_DATA)/local/tmp
323 ANDROID_DATA=$(TARGET_OUT_DATA) \
324 ANDROID_ROOT=$(TARGET_OUT) \
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700325 $(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
Benoit Goby5ac9eee2012-08-31 19:52:15 -0700326
Nick Kralevich16d1af12013-06-17 14:49:19 -0700327# -----------------------------------------------------------------------------
Pavel Chupinf22fb682013-09-06 18:43:27 +0400328# Run the unit tests built against x86 bionic on an x86 host.
329# -----------------------------------------------------------------------------
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700330
Elliott Hughes0c567f12014-04-22 19:21:32 -0700331ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700332# gtest needs ANDROID_DATA/local/tmp for death test output.
333# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
Pavel Chupinf22fb682013-09-06 18:43:27 +0400334# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
Calin Juravle72270662014-03-19 17:45:08 +0000335# BIONIC_TEST_FLAGS is either empty or it comes from the user.
Pavel Chupin17558de2013-10-17 14:41:34 +0400336bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
Christopher Ferrisb38e4d52013-10-25 10:06:57 -0700337 if [ ! -d /system -o ! -d /system/bin ]; then \
338 echo "Attempting to create /system/bin"; \
339 sudo mkdir -p -m 0777 /system/bin; \
340 fi
Pavel Chupinf22fb682013-09-06 18:43:27 +0400341 mkdir -p $(TARGET_OUT_DATA)/local/tmp
Pavel Chupin17558de2013-10-17 14:41:34 +0400342 cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
Elliott Hughese60c4f02013-09-19 11:28:20 -0700343 cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
Pavel Chupinf22fb682013-09-06 18:43:27 +0400344 ANDROID_DATA=$(TARGET_OUT_DATA) \
345 ANDROID_ROOT=$(TARGET_OUT) \
Pavel Chupinf22fb682013-09-06 18:43:27 +0400346 LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
Dmitriy Ivanov156c3af2014-04-22 15:22:25 -0700347 $(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS)
Pavel Chupinf22fb682013-09-06 18:43:27 +0400348endif
Elliott Hughes0c567f12014-04-22 19:21:32 -0700349
350endif # linux-x86
Pavel Chupinf22fb682013-09-06 18:43:27 +0400351
Benoit Goby5ac9eee2012-08-31 19:52:15 -0700352endif # !BUILD_TINY_ANDROID