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