Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 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. |
Benoit Goby | 5ac9eee | 2012-08-31 19:52:15 -0700 | [diff] [blame] | 15 | # |
| 16 | |
Elliott Hughes | e7c59f9 | 2013-12-17 20:47:06 -0800 | [diff] [blame] | 17 | ifneq ($(BUILD_TINY_ANDROID),true) |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 18 | |
| 19 | LOCAL_PATH := $(call my-dir) |
| 20 | |
Elliott Hughes | 7be369d | 2012-11-08 15:37:43 -0800 | [diff] [blame] | 21 | # ----------------------------------------------------------------------------- |
Elliott Hughes | 7be369d | 2012-11-08 15:37:43 -0800 | [diff] [blame] | 22 | # Unit tests. |
| 23 | # ----------------------------------------------------------------------------- |
| 24 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 25 | ifeq ($(HOST_OS)-$(HOST_ARCH),$(filter $(HOST_OS)-$(HOST_ARCH),linux-x86 linux-x86_64)) |
| 26 | build_host := true |
| 27 | else |
| 28 | build_host := false |
| 29 | endif |
| 30 | |
| 31 | # ----------------------------------------------------------------------------- |
| 32 | # All standard tests. |
| 33 | # ----------------------------------------------------------------------------- |
| 34 | test_cflags = \ |
Nick Kralevich | dcab1b2 | 2013-01-10 17:12:29 -0800 | [diff] [blame] | 35 | -fstack-protector-all \ |
Elliott Hughes | ad88a08 | 2012-10-24 18:37:21 -0700 | [diff] [blame] | 36 | -g \ |
| 37 | -Wall -Wextra \ |
| 38 | -Werror \ |
Elliott Hughes | a0ee078 | 2013-01-30 19:06:37 -0800 | [diff] [blame] | 39 | -fno-builtin \ |
Elliott Hughes | ad88a08 | 2012-10-24 18:37:21 -0700 | [diff] [blame] | 40 | |
Elliott Hughes | 3d7a0d9 | 2014-04-29 14:46:56 -0700 | [diff] [blame] | 41 | test_cflags += -D__STDC_LIMIT_MACROS # For glibc. |
| 42 | |
Dan Albert | b8425c5 | 2014-04-29 17:49:06 -0700 | [diff] [blame] | 43 | test_cppflags = \ |
| 44 | -std=gnu++11 \ |
| 45 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 46 | libBionicStandardTests_src_files := \ |
Christopher Ferris | b687ad3 | 2013-11-06 17:32:11 -0800 | [diff] [blame] | 47 | buffer_tests.cpp \ |
Elliott Hughes | f3c7390 | 2014-04-18 10:29:16 -0700 | [diff] [blame] | 48 | ctype_test.cpp \ |
Elliott Hughes | 063cfb2 | 2012-10-25 20:55:23 -0700 | [diff] [blame] | 49 | dirent_test.cpp \ |
Kito Cheng | 8baa929 | 2013-04-03 11:29:40 +0800 | [diff] [blame] | 50 | eventfd_test.cpp \ |
Elliott Hughes | 0620925 | 2013-11-06 16:20:54 -0800 | [diff] [blame] | 51 | fcntl_test.cpp \ |
Elliott Hughes | 90e10d4 | 2012-11-02 17:05:20 -0700 | [diff] [blame] | 52 | fenv_test.cpp \ |
Calin Juravle | d4934a7 | 2014-02-24 16:13:50 +0000 | [diff] [blame] | 53 | ftw_test.cpp \ |
Nick Kralevich | 2c5153b | 2013-01-11 14:43:05 -0800 | [diff] [blame] | 54 | getauxval_test.cpp \ |
Elliott Hughes | 04a83a4 | 2012-08-16 15:59:12 -0700 | [diff] [blame] | 55 | getcwd_test.cpp \ |
Elliott Hughes | 74f0833 | 2013-07-02 15:23:38 -0700 | [diff] [blame] | 56 | inttypes_test.cpp \ |
Elliott Hughes | 8f2a5a0 | 2013-03-15 15:30:25 -0700 | [diff] [blame] | 57 | libc_logging_test.cpp \ |
Elliott Hughes | 58b5754 | 2012-10-29 14:27:10 -0700 | [diff] [blame] | 58 | libgen_test.cpp \ |
Pavel Chupin | 50282f7 | 2014-03-25 13:43:04 +0400 | [diff] [blame] | 59 | locale_test.cpp \ |
Christopher Ferris | 885f3b9 | 2013-05-21 17:48:01 -0700 | [diff] [blame] | 60 | malloc_test.cpp \ |
Elliott Hughes | a0ee078 | 2013-01-30 19:06:37 -0800 | [diff] [blame] | 61 | math_test.cpp \ |
Elliott Hughes | eb664e2 | 2014-05-13 10:44:07 -0700 | [diff] [blame] | 62 | mntent_test.cpp \ |
Elliott Hughes | d3b9d11 | 2013-02-13 08:22:07 -0800 | [diff] [blame] | 63 | netdb_test.cpp \ |
Elliott Hughes | bfeab1b | 2012-09-05 17:47:37 -0700 | [diff] [blame] | 64 | pthread_test.cpp \ |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 65 | regex_test.cpp \ |
Elliott Hughes | 53bfdae | 2013-10-18 19:39:09 -0700 | [diff] [blame] | 66 | sched_test.cpp \ |
Elliott Hughes | da73f65 | 2012-11-30 16:40:55 -0800 | [diff] [blame] | 67 | signal_test.cpp \ |
Elliott Hughes | ad88a08 | 2012-10-24 18:37:21 -0700 | [diff] [blame] | 68 | stack_protector_test.cpp \ |
Sergey Melnikov | c45087b | 2013-01-25 16:40:13 +0400 | [diff] [blame] | 69 | stack_unwinding_test.cpp \ |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 70 | stack_unwinding_test_impl.c \ |
Calin Juravle | da030de | 2014-02-20 13:40:36 +0000 | [diff] [blame] | 71 | stdint_test.cpp \ |
Elliott Hughes | 91875dc | 2012-09-24 17:55:15 -0700 | [diff] [blame] | 72 | stdio_test.cpp \ |
Elliott Hughes | 774c7f5 | 2012-10-01 13:11:03 -0700 | [diff] [blame] | 73 | stdlib_test.cpp \ |
Irina Tirdea | b5f053b | 2012-09-08 09:17:54 +0300 | [diff] [blame] | 74 | string_test.cpp \ |
Elliott Hughes | 73964c5 | 2013-02-13 14:35:14 -0800 | [diff] [blame] | 75 | strings_test.cpp \ |
Kenny Root | 2a54e5e | 2012-09-13 10:52:52 -0700 | [diff] [blame] | 76 | stubs_test.cpp \ |
Elliott Hughes | 8c42606 | 2014-04-10 11:34:14 -0700 | [diff] [blame] | 77 | sstream_test.cpp \ |
Elliott Hughes | 1195207 | 2013-10-24 15:15:14 -0700 | [diff] [blame] | 78 | sys_epoll_test.cpp \ |
Elliott Hughes | 431166d | 2014-01-27 16:28:31 -0800 | [diff] [blame] | 79 | sys_mman_test.cpp \ |
Elliott Hughes | 0f461e3 | 2014-01-09 10:17:03 -0800 | [diff] [blame] | 80 | sys_resource_test.cpp \ |
Elliott Hughes | 5b9310e | 2013-10-02 16:59:05 -0700 | [diff] [blame] | 81 | sys_select_test.cpp \ |
Elliott Hughes | b4f7616 | 2013-09-19 16:27:24 -0700 | [diff] [blame] | 82 | sys_sendfile_test.cpp \ |
Guillaume Ranquet | 6ff0c75 | 2014-02-10 13:11:29 +0100 | [diff] [blame] | 83 | sys_socket_test.cpp \ |
Elliott Hughes | d0be7c8 | 2013-08-08 17:13:33 -0700 | [diff] [blame] | 84 | sys_stat_test.cpp \ |
Elliott Hughes | db1ea34 | 2014-01-17 18:42:49 -0800 | [diff] [blame] | 85 | sys_statvfs_test.cpp \ |
Elliott Hughes | e61dc71 | 2013-11-13 13:14:31 -0800 | [diff] [blame] | 86 | sys_syscall_test.cpp \ |
Elliott Hughes | f8fcfbc | 2013-10-22 13:28:46 -0700 | [diff] [blame] | 87 | sys_time_test.cpp \ |
Elliott Hughes | 894f8cb | 2014-01-03 14:49:37 -0800 | [diff] [blame] | 88 | sys_types_test.cpp \ |
Elliott Hughes | db1ea34 | 2014-01-17 18:42:49 -0800 | [diff] [blame] | 89 | sys_vfs_test.cpp \ |
Colin Cross | b27e200 | 2013-01-28 17:19:43 -0800 | [diff] [blame] | 90 | system_properties_test.cpp \ |
Elliott Hughes | e0175ca | 2013-03-14 14:38:08 -0700 | [diff] [blame] | 91 | time_test.cpp \ |
Elliott Hughes | a55f630 | 2013-01-02 14:23:43 -0800 | [diff] [blame] | 92 | unistd_test.cpp \ |
Elliott Hughes | 77e944f | 2014-04-04 17:34:51 -0700 | [diff] [blame] | 93 | wchar_test.cpp \ |
Elliott Hughes | cc213f8 | 2012-08-14 15:32:42 -0700 | [diff] [blame] | 94 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 95 | libBionicStandardTests_cflags := \ |
| 96 | $(test_cflags) \ |
jeffhao | acf5aa7 | 2012-09-12 17:25:30 -0700 | [diff] [blame] | 97 | |
Dan Albert | b8425c5 | 2014-04-29 17:49:06 -0700 | [diff] [blame] | 98 | libBionicStandardTests_cppflags := \ |
| 99 | $(test_cppflags) \ |
| 100 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 101 | libBionicStandardTests_ldlibs_host := \ |
| 102 | -lrt \ |
Nick Kralevich | 5bcf398 | 2013-06-28 10:34:09 -0700 | [diff] [blame] | 103 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 104 | module := libBionicStandardTests |
| 105 | module_tag := optional |
| 106 | build_type := target |
| 107 | build_target := STATIC_TEST_LIBRARY |
| 108 | include $(LOCAL_PATH)/Android.build.mk |
| 109 | build_type := host |
| 110 | include $(LOCAL_PATH)/Android.build.mk |
Elliott Hughes | bfeab1b | 2012-09-05 17:47:37 -0700 | [diff] [blame] | 111 | |
Elliott Hughes | 7be369d | 2012-11-08 15:37:43 -0800 | [diff] [blame] | 112 | # ----------------------------------------------------------------------------- |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 113 | # Fortify tests. |
Christopher Ferris | 153d927 | 2013-08-27 14:32:15 -0700 | [diff] [blame] | 114 | # ----------------------------------------------------------------------------- |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 115 | $(foreach compiler,gcc clang, \ |
| 116 | $(foreach test,1 2, \ |
| 117 | $(eval fortify$(test)-tests-$(compiler)_cflags := \ |
| 118 | $(test_cflags) \ |
| 119 | -U_FORTIFY_SOURCE \ |
| 120 | -D_FORTIFY_SOURCE=$(test) \ |
| 121 | -DTEST_NAME=Fortify$(test)_$(compiler)); \ |
| 122 | $(eval fortify$(test)-tests-$(compiler)_cflags_host := \ |
| 123 | -Wno-error); \ |
| 124 | $(eval fortify$(test)-tests-$(compiler)_src_files := \ |
| 125 | fortify_test.cpp); \ |
| 126 | $(eval fortify_libs += fortify$(test)-tests-$(compiler)); \ |
| 127 | ) \ |
| 128 | ) |
Christopher Ferris | 153d927 | 2013-08-27 14:32:15 -0700 | [diff] [blame] | 129 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 130 | module := fortify1-tests-gcc |
| 131 | module_tag := optional |
| 132 | build_type := target |
| 133 | build_target := STATIC_TEST_LIBRARY |
| 134 | include $(LOCAL_PATH)/Android.build.mk |
| 135 | build_type := host |
| 136 | include $(LOCAL_PATH)/Android.build.mk |
Christopher Ferris | 8240bed | 2013-08-29 11:37:33 -0700 | [diff] [blame] | 137 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 138 | module := fortify2-tests-gcc |
| 139 | module_tag := optional |
| 140 | build_type := target |
| 141 | build_target := STATIC_TEST_LIBRARY |
| 142 | include $(LOCAL_PATH)/Android.build.mk |
| 143 | build_type := host |
| 144 | include $(LOCAL_PATH)/Android.build.mk |
Christopher Ferris | 8240bed | 2013-08-29 11:37:33 -0700 | [diff] [blame] | 145 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 146 | fortify1-tests-clang_clang_target := true |
| 147 | fortify1-tests-clang_cflags_host := -D__clang__ |
Christopher Ferris | 8240bed | 2013-08-29 11:37:33 -0700 | [diff] [blame] | 148 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 149 | module := fortify1-tests-clang |
| 150 | module_tag := optional |
| 151 | build_type := target |
| 152 | build_target := STATIC_TEST_LIBRARY |
| 153 | include $(LOCAL_PATH)/Android.build.mk |
| 154 | build_type := host |
| 155 | include $(LOCAL_PATH)/Android.build.mk |
| 156 | |
| 157 | fortify2-tests-clang_clang_target := true |
| 158 | |
| 159 | fortify2-tests-clang_cflags_host := -D__clang__ |
| 160 | |
| 161 | module := fortify2-tests-clang |
| 162 | module_tag := optional |
| 163 | build_type := target |
| 164 | build_target := STATIC_TEST_LIBRARY |
| 165 | include $(LOCAL_PATH)/Android.build.mk |
| 166 | build_type := host |
| 167 | include $(LOCAL_PATH)/Android.build.mk |
Christopher Ferris | 153d927 | 2013-08-27 14:32:15 -0700 | [diff] [blame] | 168 | |
| 169 | # ----------------------------------------------------------------------------- |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 170 | # Library of all tests (excluding the dynamic linker tests). |
Elliott Hughes | 7be369d | 2012-11-08 15:37:43 -0800 | [diff] [blame] | 171 | # ----------------------------------------------------------------------------- |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 172 | libBionicTests_whole_static_libraries := \ |
| 173 | libBionicStandardTests \ |
| 174 | $(fortify_libs) \ |
Elliott Hughes | 124fae9 | 2012-10-31 14:20:03 -0700 | [diff] [blame] | 175 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 176 | module := libBionicTests |
| 177 | module_tag := optional |
| 178 | build_type := target |
| 179 | build_target := STATIC_TEST_LIBRARY |
| 180 | include $(LOCAL_PATH)/Android.build.mk |
| 181 | build_type := host |
| 182 | include $(LOCAL_PATH)/Android.build.mk |
| 183 | |
| 184 | # ----------------------------------------------------------------------------- |
| 185 | # Library used by dlfcn tests. |
| 186 | # ----------------------------------------------------------------------------- |
| 187 | ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),mips mips64)) |
| 188 | no-elf-hash-table-library_src_files := \ |
| 189 | empty.cpp \ |
| 190 | |
| 191 | no-elf-hash-table-library_ldflags := \ |
| 192 | -Wl,--hash-style=gnu \ |
| 193 | |
| 194 | module := no-elf-hash-table-library |
| 195 | module_tag := optional |
| 196 | build_type := target |
| 197 | build_target := SHARED_LIBRARY |
| 198 | include $(LOCAL_PATH)/Android.build.mk |
Elliott Hughes | a43e906 | 2013-01-07 14:18:22 -0800 | [diff] [blame] | 199 | endif |
Elliott Hughes | 124fae9 | 2012-10-31 14:20:03 -0700 | [diff] [blame] | 200 | |
Elliott Hughes | 7be369d | 2012-11-08 15:37:43 -0800 | [diff] [blame] | 201 | # ----------------------------------------------------------------------------- |
Torne (Richard Coles) | 26ec967 | 2014-04-30 15:48:40 +0100 | [diff] [blame] | 202 | # Library used by dlext tests - with/without GNU RELRO program header |
Torne (Richard Coles) | 12bbb91 | 2014-02-06 14:34:21 +0000 | [diff] [blame] | 203 | # ----------------------------------------------------------------------------- |
| 204 | libdlext_test_src_files := \ |
| 205 | dlext_test_library.cpp \ |
| 206 | |
Torne (Richard Coles) | 26ec967 | 2014-04-30 15:48:40 +0100 | [diff] [blame] | 207 | libdlext_test_ldflags := \ |
| 208 | -Wl,-z,relro \ |
| 209 | |
Torne (Richard Coles) | 12bbb91 | 2014-02-06 14:34:21 +0000 | [diff] [blame] | 210 | module := libdlext_test |
| 211 | module_tag := optional |
| 212 | build_type := target |
| 213 | build_target := SHARED_LIBRARY |
| 214 | include $(LOCAL_PATH)/Android.build.mk |
| 215 | |
Dmitriy Ivanov | 7db1809 | 2014-05-08 12:27:25 -0700 | [diff] [blame] | 216 | # ----------------------------------------------------------------------------- |
| 217 | # create symlink to libdlext_test.so for symlink test |
| 218 | # ----------------------------------------------------------------------------- |
| 219 | libdlext_origin := $(LOCAL_INSTALLED_MODULE) |
| 220 | libdlext_sym := $(subst libdlext_test,libdlext_test_v2,$(libdlext_origin)) |
| 221 | $(libdlext_sym): $(libdlext_origin) |
| 222 | @echo "Symlink: $@ -> $(notdir $<)" |
| 223 | @mkdir -p $(dir $@) |
| 224 | $(hide) ln -sf $(notdir $<) $@ |
| 225 | |
| 226 | ALL_MODULES := \ |
| 227 | $(ALL_MODULES) $(libdlext_sym) |
| 228 | |
Torne (Richard Coles) | 26ec967 | 2014-04-30 15:48:40 +0100 | [diff] [blame] | 229 | libdlext_test_norelro_src_files := \ |
| 230 | dlext_test_library.cpp \ |
| 231 | |
| 232 | libdlext_test_norelro_ldflags := \ |
| 233 | -Wl,-z,norelro \ |
| 234 | |
| 235 | module := libdlext_test_norelro |
| 236 | module_tag := optional |
| 237 | build_type := target |
| 238 | build_target := SHARED_LIBRARY |
| 239 | include $(LOCAL_PATH)/Android.build.mk |
| 240 | |
Torne (Richard Coles) | 12bbb91 | 2014-02-06 14:34:21 +0000 | [diff] [blame] | 241 | # ----------------------------------------------------------------------------- |
Dmitriy Ivanov | 6396da9 | 2014-05-05 19:52:13 -0700 | [diff] [blame] | 242 | # Library used by atexit tests |
Dmitriy Ivanov | 6b56691 | 2014-04-29 08:41:29 -0700 | [diff] [blame] | 243 | # ----------------------------------------------------------------------------- |
| 244 | |
| 245 | libtest_atexit_src_files := \ |
| 246 | atexit_testlib.cpp |
| 247 | |
| 248 | module := libtest_atexit |
| 249 | build_type := target |
| 250 | build_target := SHARED_LIBRARY |
| 251 | include $(LOCAL_PATH)/Android.build.mk |
| 252 | |
| 253 | # ----------------------------------------------------------------------------- |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 254 | # Tests for the device using bionic's .so. Run with: |
| 255 | # adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests |
Elliott Hughes | 7be369d | 2012-11-08 15:37:43 -0800 | [diff] [blame] | 256 | # ----------------------------------------------------------------------------- |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 257 | bionic-unit-tests_whole_static_libraries := \ |
| 258 | libBionicTests \ |
Elliott Hughes | 124fae9 | 2012-10-31 14:20:03 -0700 | [diff] [blame] | 259 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 260 | bionic-unit-tests_src_files := \ |
Dmitriy Ivanov | 6b56691 | 2014-04-29 08:41:29 -0700 | [diff] [blame] | 261 | atexit_test.cpp \ |
Torne (Richard Coles) | 12bbb91 | 2014-02-06 14:34:21 +0000 | [diff] [blame] | 262 | dlext_test.cpp \ |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 263 | dlfcn_test.cpp \ |
| 264 | |
Dmitriy Ivanov | 6396da9 | 2014-05-05 19:52:13 -0700 | [diff] [blame] | 265 | bionic-unit-tests_cppflags := \ |
| 266 | $(test_cppflags) |
| 267 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 268 | bionic-unit-tests_ldflags := \ |
| 269 | -Wl,--export-dynamic \ |
| 270 | -Wl,-u,DlSymTestFunction \ |
| 271 | |
Torne (Richard Coles) | 2605261 | 2014-05-02 14:57:42 +0100 | [diff] [blame] | 272 | bionic-unit-tests_c_includes := \ |
| 273 | $(call include-path-for, libpagemap) \ |
| 274 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 275 | bionic-unit-tests_shared_libraries_target := \ |
| 276 | libdl \ |
Torne (Richard Coles) | 2605261 | 2014-05-02 14:57:42 +0100 | [diff] [blame] | 277 | libpagemap \ |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 278 | |
| 279 | module := bionic-unit-tests |
| 280 | module_tag := optional |
Christopher Ferris | 5090964 | 2014-04-28 21:10:37 -0700 | [diff] [blame] | 281 | bionic-unit-tests_multilib := both |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 282 | build_type := target |
| 283 | build_target := NATIVE_TEST |
| 284 | include $(LOCAL_PATH)/Android.build.mk |
| 285 | |
| 286 | # ----------------------------------------------------------------------------- |
| 287 | # Tests for the device linked against bionic's static library. Run with: |
| 288 | # adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static |
| 289 | # ----------------------------------------------------------------------------- |
| 290 | bionic-unit-tests-static_whole_static_libraries := \ |
| 291 | libBionicTests \ |
| 292 | |
| 293 | bionic-unit-tests-static_static_libraries := \ |
| 294 | libstlport_static \ |
| 295 | libm \ |
| 296 | libc \ |
| 297 | libstdc++ \ |
| 298 | |
| 299 | bionic-unit-tests-static_force_static_executable := true |
| 300 | |
| 301 | module := bionic-unit-tests-static |
| 302 | module_tag := optional |
Christopher Ferris | 5090964 | 2014-04-28 21:10:37 -0700 | [diff] [blame] | 303 | bionic-unit-tests-static_multilib := both |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 304 | build_type := target |
| 305 | build_target := NATIVE_TEST |
| 306 | include $(LOCAL_PATH)/Android.build.mk |
| 307 | |
| 308 | # ----------------------------------------------------------------------------- |
| 309 | # Tests to run on the host and linked against glibc. Run with: |
| 310 | # cd bionic/tests; mm bionic-unit-tests-glibc-run |
| 311 | # ----------------------------------------------------------------------------- |
Dmitriy Ivanov | 156c3af | 2014-04-22 15:22:25 -0700 | [diff] [blame] | 312 | |
| 313 | ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86) |
Dmitriy Ivanov | 156c3af | 2014-04-22 15:22:25 -0700 | [diff] [blame] | 314 | |
Dmitriy Ivanov | 6b56691 | 2014-04-29 08:41:29 -0700 | [diff] [blame] | 315 | bionic-unit-tests-glibc_src_files := \ |
| 316 | atexit_test.cpp \ |
| 317 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 318 | bionic-unit-tests-glibc_whole_static_libraries := \ |
| 319 | libBionicStandardTests \ |
| 320 | |
| 321 | bionic-unit-tests-glibc_ldlibs := \ |
Dmitriy Ivanov | 6b56691 | 2014-04-29 08:41:29 -0700 | [diff] [blame] | 322 | -lrt -ldl \ |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 323 | |
Dmitriy Ivanov | 6396da9 | 2014-05-05 19:52:13 -0700 | [diff] [blame] | 324 | bionic-unit-tests-glibc_cppflags := \ |
| 325 | $(test_cppflags) |
| 326 | |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 327 | module := bionic-unit-tests-glibc |
| 328 | module_tag := optional |
Calin Juravle | 0e9d7fc | 2014-05-07 19:06:30 +0100 | [diff] [blame] | 329 | bionic-unit-tests-glibc_multilib := both |
Christopher Ferris | f04935c | 2013-12-20 18:43:21 -0800 | [diff] [blame] | 330 | build_type := host |
| 331 | build_target := NATIVE_TEST |
| 332 | include $(LOCAL_PATH)/Android.build.mk |
Christopher Ferris | b38e4d5 | 2013-10-25 10:06:57 -0700 | [diff] [blame] | 333 | |
Elliott Hughes | 0c567f1 | 2014-04-22 19:21:32 -0700 | [diff] [blame] | 334 | ifneq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),arm mips x86)) |
| 335 | LINKER = linker64 |
| 336 | NATIVE_TEST_SUFFIX=64 |
| 337 | else |
| 338 | LINKER = linker |
| 339 | NATIVE_TEST_SUFFIX=32 |
| 340 | endif |
| 341 | |
Christopher Ferris | b38e4d5 | 2013-10-25 10:06:57 -0700 | [diff] [blame] | 342 | # gtest needs ANDROID_DATA/local/tmp for death test output. |
| 343 | # Make sure to create ANDROID_DATA/local/tmp if doesn't exist. |
| 344 | # Use the current target out directory as ANDROID_DATA. |
Calin Juravle | 7227066 | 2014-03-19 17:45:08 +0000 | [diff] [blame] | 345 | # BIONIC_TEST_FLAGS is either empty or it comes from the user. |
Christopher Ferris | b38e4d5 | 2013-10-25 10:06:57 -0700 | [diff] [blame] | 346 | bionic-unit-tests-glibc-run: bionic-unit-tests-glibc |
| 347 | mkdir -p $(TARGET_OUT_DATA)/local/tmp |
| 348 | ANDROID_DATA=$(TARGET_OUT_DATA) \ |
| 349 | ANDROID_ROOT=$(TARGET_OUT) \ |
Dmitriy Ivanov | 156c3af | 2014-04-22 15:22:25 -0700 | [diff] [blame] | 350 | $(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS) |
Benoit Goby | 5ac9eee | 2012-08-31 19:52:15 -0700 | [diff] [blame] | 351 | |
Nick Kralevich | 16d1af1 | 2013-06-17 14:49:19 -0700 | [diff] [blame] | 352 | # ----------------------------------------------------------------------------- |
Pavel Chupin | f22fb68 | 2013-09-06 18:43:27 +0400 | [diff] [blame] | 353 | # Run the unit tests built against x86 bionic on an x86 host. |
| 354 | # ----------------------------------------------------------------------------- |
Dmitriy Ivanov | 156c3af | 2014-04-22 15:22:25 -0700 | [diff] [blame] | 355 | |
Elliott Hughes | 0c567f1 | 2014-04-22 19:21:32 -0700 | [diff] [blame] | 356 | ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64)) |
Christopher Ferris | b38e4d5 | 2013-10-25 10:06:57 -0700 | [diff] [blame] | 357 | # gtest needs ANDROID_DATA/local/tmp for death test output. |
| 358 | # Make sure to create ANDROID_DATA/local/tmp if doesn't exist. |
Pavel Chupin | f22fb68 | 2013-09-06 18:43:27 +0400 | [diff] [blame] | 359 | # bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT. |
Calin Juravle | 7227066 | 2014-03-19 17:45:08 +0000 | [diff] [blame] | 360 | # BIONIC_TEST_FLAGS is either empty or it comes from the user. |
Pavel Chupin | 17558de | 2013-10-17 14:41:34 +0400 | [diff] [blame] | 361 | bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh |
Christopher Ferris | b38e4d5 | 2013-10-25 10:06:57 -0700 | [diff] [blame] | 362 | if [ ! -d /system -o ! -d /system/bin ]; then \ |
| 363 | echo "Attempting to create /system/bin"; \ |
| 364 | sudo mkdir -p -m 0777 /system/bin; \ |
| 365 | fi |
Pavel Chupin | f22fb68 | 2013-09-06 18:43:27 +0400 | [diff] [blame] | 366 | mkdir -p $(TARGET_OUT_DATA)/local/tmp |
Pavel Chupin | 17558de | 2013-10-17 14:41:34 +0400 | [diff] [blame] | 367 | cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin |
Elliott Hughes | e60c4f0 | 2013-09-19 11:28:20 -0700 | [diff] [blame] | 368 | cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin |
Pavel Chupin | f22fb68 | 2013-09-06 18:43:27 +0400 | [diff] [blame] | 369 | ANDROID_DATA=$(TARGET_OUT_DATA) \ |
| 370 | ANDROID_ROOT=$(TARGET_OUT) \ |
Pavel Chupin | f22fb68 | 2013-09-06 18:43:27 +0400 | [diff] [blame] | 371 | LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \ |
Dmitriy Ivanov | 156c3af | 2014-04-22 15:22:25 -0700 | [diff] [blame] | 372 | $(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests$(NATIVE_TEST_SUFFIX) $(BIONIC_TEST_FLAGS) |
Pavel Chupin | f22fb68 | 2013-09-06 18:43:27 +0400 | [diff] [blame] | 373 | endif |
Elliott Hughes | 0c567f1 | 2014-04-22 19:21:32 -0700 | [diff] [blame] | 374 | |
| 375 | endif # linux-x86 |
Pavel Chupin | f22fb68 | 2013-09-06 18:43:27 +0400 | [diff] [blame] | 376 | |
Benoit Goby | 5ac9eee | 2012-08-31 19:52:15 -0700 | [diff] [blame] | 377 | endif # !BUILD_TINY_ANDROID |