2012-08-15 00:32:42 +02:00
|
|
|
#
|
|
|
|
# Copyright (C) 2012 The Android Open Source Project
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
2012-09-01 04:52:15 +02:00
|
|
|
#
|
|
|
|
|
2012-08-15 00:32:42 +02:00
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Unit tests.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
ifeq ($(HOST_OS)-$(HOST_ARCH),$(filter $(HOST_OS)-$(HOST_ARCH),linux-x86 linux-x86_64))
|
|
|
|
build_host := true
|
|
|
|
else
|
|
|
|
build_host := false
|
|
|
|
endif
|
|
|
|
|
2014-10-17 20:47:18 +02:00
|
|
|
common_additional_dependencies := $(LOCAL_PATH)/Android.mk $(LOCAL_PATH)/Android.build.mk
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# All standard tests.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
test_cflags = \
|
2013-01-11 02:12:29 +01:00
|
|
|
-fstack-protector-all \
|
2012-10-25 03:37:21 +02:00
|
|
|
-g \
|
2014-06-04 00:22:34 +02:00
|
|
|
-Wall -Wextra -Wunused \
|
2012-10-25 03:37:21 +02:00
|
|
|
-Werror \
|
Upgrade libm.
This brings us up to date with FreeBSD HEAD, fixes various bugs, unifies
the set of functions we support on ARM, MIPS, and x86, fixes "long double",
adds ISO C99 support, and adds basic unit tests.
It turns out that our "long double" functions have always been broken
for non-normal numbers. This patch fixes that by not using the upstream
implementations and just forwarding to the regular "double" implementation
instead (since "long double" on Android is just "double" anyway, which is
what BSD doesn't support).
All the tests pass on ARM, MIPS, and x86, plus glibc on x86-64.
Bug: 3169850
Bug: 8012787
Bug: https://code.google.com/p/android/issues/detail?id=6697
Change-Id: If0c343030959c24bfc50d4d21c9530052c581837
2013-01-31 04:06:37 +01:00
|
|
|
-fno-builtin \
|
2012-10-25 03:37:21 +02:00
|
|
|
|
2014-04-29 23:46:56 +02:00
|
|
|
test_cflags += -D__STDC_LIMIT_MACROS # For glibc.
|
|
|
|
|
2014-07-11 03:53:41 +02:00
|
|
|
ifeq ($(MALLOC_IMPL),dlmalloc)
|
|
|
|
test_cflags += -DUSE_DLMALLOC
|
|
|
|
else
|
2014-05-08 20:14:03 +02:00
|
|
|
test_cflags += -DUSE_JEMALLOC
|
|
|
|
endif
|
|
|
|
|
2014-04-30 02:49:06 +02:00
|
|
|
test_cppflags = \
|
|
|
|
-std=gnu++11 \
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
libBionicStandardTests_src_files := \
|
2014-05-14 01:05:51 +02:00
|
|
|
arpa_inet_test.cpp \
|
2013-11-07 02:32:11 +01:00
|
|
|
buffer_tests.cpp \
|
2014-11-06 20:16:55 +01:00
|
|
|
complex_test.cpp \
|
2014-04-18 19:29:16 +02:00
|
|
|
ctype_test.cpp \
|
2012-10-26 05:55:23 +02:00
|
|
|
dirent_test.cpp \
|
2015-01-25 03:36:29 +01:00
|
|
|
error_test.cpp \
|
2013-04-03 05:29:40 +02:00
|
|
|
eventfd_test.cpp \
|
2013-11-07 01:20:54 +01:00
|
|
|
fcntl_test.cpp \
|
2012-11-03 01:05:20 +01:00
|
|
|
fenv_test.cpp \
|
2014-02-24 17:13:50 +01:00
|
|
|
ftw_test.cpp \
|
2013-01-11 23:43:05 +01:00
|
|
|
getauxval_test.cpp \
|
2012-08-17 00:59:12 +02:00
|
|
|
getcwd_test.cpp \
|
2013-07-03 00:23:38 +02:00
|
|
|
inttypes_test.cpp \
|
2013-03-15 23:30:25 +01:00
|
|
|
libc_logging_test.cpp \
|
2012-10-29 22:27:10 +01:00
|
|
|
libgen_test.cpp \
|
2014-03-25 10:43:04 +01:00
|
|
|
locale_test.cpp \
|
2013-05-22 02:48:01 +02:00
|
|
|
malloc_test.cpp \
|
Upgrade libm.
This brings us up to date with FreeBSD HEAD, fixes various bugs, unifies
the set of functions we support on ARM, MIPS, and x86, fixes "long double",
adds ISO C99 support, and adds basic unit tests.
It turns out that our "long double" functions have always been broken
for non-normal numbers. This patch fixes that by not using the upstream
implementations and just forwarding to the regular "double" implementation
instead (since "long double" on Android is just "double" anyway, which is
what BSD doesn't support).
All the tests pass on ARM, MIPS, and x86, plus glibc on x86-64.
Bug: 3169850
Bug: 8012787
Bug: https://code.google.com/p/android/issues/detail?id=6697
Change-Id: If0c343030959c24bfc50d4d21c9530052c581837
2013-01-31 04:06:37 +01:00
|
|
|
math_test.cpp \
|
2014-05-13 19:44:07 +02:00
|
|
|
mntent_test.cpp \
|
2013-02-13 17:22:07 +01:00
|
|
|
netdb_test.cpp \
|
2012-09-06 02:47:37 +02:00
|
|
|
pthread_test.cpp \
|
2014-12-03 23:39:20 +01:00
|
|
|
pty_test.cpp \
|
2012-08-15 00:32:42 +02:00
|
|
|
regex_test.cpp \
|
2013-10-19 04:39:09 +02:00
|
|
|
sched_test.cpp \
|
2014-07-24 01:02:26 +02:00
|
|
|
search_test.cpp \
|
2014-09-19 01:11:59 +02:00
|
|
|
semaphore_test.cpp \
|
2014-10-31 09:37:09 +01:00
|
|
|
setjmp_test.cpp \
|
2012-12-01 01:40:55 +01:00
|
|
|
signal_test.cpp \
|
2012-10-25 03:37:21 +02:00
|
|
|
stack_protector_test.cpp \
|
2014-09-26 14:02:09 +02:00
|
|
|
stack_unwinding_test.cpp \
|
2014-05-24 05:06:03 +02:00
|
|
|
stdatomic_test.cpp \
|
2014-02-20 14:40:36 +01:00
|
|
|
stdint_test.cpp \
|
2012-09-25 02:55:15 +02:00
|
|
|
stdio_test.cpp \
|
2014-08-20 02:00:33 +02:00
|
|
|
stdio_ext_test.cpp \
|
2012-10-01 22:11:03 +02:00
|
|
|
stdlib_test.cpp \
|
2012-09-08 08:17:54 +02:00
|
|
|
string_test.cpp \
|
2014-08-19 02:28:32 +02:00
|
|
|
string_posix_strerror_r_test.cpp \
|
2013-02-13 23:35:14 +01:00
|
|
|
strings_test.cpp \
|
2012-09-13 19:52:52 +02:00
|
|
|
stubs_test.cpp \
|
2014-04-10 20:34:14 +02:00
|
|
|
sstream_test.cpp \
|
2013-10-25 00:15:14 +02:00
|
|
|
sys_epoll_test.cpp \
|
2014-01-28 01:28:31 +01:00
|
|
|
sys_mman_test.cpp \
|
2015-01-08 00:05:49 +01:00
|
|
|
sys_personality_test.cpp \
|
Fix <sys/resource.h>.
The situation here is a bit confusing. On 64-bit, rlimit and rlimit64 are
the same, and so getrlimit/getrlimit64, setrlimit/setrlimit64,
and prlimit/prlimit64 are all the same. On 32-bit, rlimit and rlimit64 are
different. 32-bit architectures other than MIPS go one step further by having
an even more limited getrlimit system call, so arm and x86 need to use
ugetrlimit instead of getrlimit. Worse, the 32-bit architectures don't have
64-bit getrlimit- and setrlimit-equivalent system calls, and you have to use
prlimit64 instead. There's no 32-bit prlimit system call, so there's no
easy implementation of that --- what should we do if the result of prlimit64
won't fit in a struct rlimit? Since 32-bit survived without prlimit/prlimit64
for this long, I'm not going to bother implementing prlimit for 32-bit.
We need the rlimit64 functions to be able to build strace 4.8 out of the box.
Change-Id: I1903d913b23016a2fc3b9f452885ac730d71e001
2014-01-09 19:17:03 +01:00
|
|
|
sys_resource_test.cpp \
|
2013-10-03 01:59:05 +02:00
|
|
|
sys_select_test.cpp \
|
2013-09-20 01:27:24 +02:00
|
|
|
sys_sendfile_test.cpp \
|
2014-02-10 13:11:29 +01:00
|
|
|
sys_socket_test.cpp \
|
2013-08-09 02:13:33 +02:00
|
|
|
sys_stat_test.cpp \
|
Implement some of the missing LFS64 support.
This gives us:
* <dirent.h>
struct dirent64
readdir64, readdir64_r, alphasort64, scandir64
* <fcntl.h>
creat64, openat64, open64.
* <sys/stat.h>
struct stat64
fstat64, fstatat64, lstat64, stat64.
* <sys/statvfs.h>
struct statvfs64
statvfs64, fstatvfs64.
* <sys/vfs.h>
struct statfs64
statfs64, fstatfs64.
This also removes some of the incorrect #define hacks we've had in the
past (for stat64, for example, which we promised to clean up way back
in bug 8472078).
Bug: 11865851
Bug: 8472078
Change-Id: Ia46443521918519f2dfa64d4621027dfd13ac566
2014-01-18 03:42:49 +01:00
|
|
|
sys_statvfs_test.cpp \
|
2013-11-13 22:14:31 +01:00
|
|
|
sys_syscall_test.cpp \
|
2014-11-15 00:51:58 +01:00
|
|
|
sys_sysinfo_test.cpp \
|
2013-10-22 22:28:46 +02:00
|
|
|
sys_time_test.cpp \
|
2014-01-03 23:49:37 +01:00
|
|
|
sys_types_test.cpp \
|
Implement some of the missing LFS64 support.
This gives us:
* <dirent.h>
struct dirent64
readdir64, readdir64_r, alphasort64, scandir64
* <fcntl.h>
creat64, openat64, open64.
* <sys/stat.h>
struct stat64
fstat64, fstatat64, lstat64, stat64.
* <sys/statvfs.h>
struct statvfs64
statvfs64, fstatvfs64.
* <sys/vfs.h>
struct statfs64
statfs64, fstatfs64.
This also removes some of the incorrect #define hacks we've had in the
past (for stat64, for example, which we promised to clean up way back
in bug 8472078).
Bug: 11865851
Bug: 8472078
Change-Id: Ia46443521918519f2dfa64d4621027dfd13ac566
2014-01-18 03:42:49 +01:00
|
|
|
sys_vfs_test.cpp \
|
2013-01-29 02:19:43 +01:00
|
|
|
system_properties_test.cpp \
|
2013-03-14 22:38:08 +01:00
|
|
|
time_test.cpp \
|
2014-06-02 20:33:04 +02:00
|
|
|
uchar_test.cpp \
|
2014-09-06 01:42:53 +02:00
|
|
|
uniqueptr_test.cpp \
|
2013-01-02 23:23:43 +01:00
|
|
|
unistd_test.cpp \
|
2014-12-03 23:39:20 +01:00
|
|
|
utmp_test.cpp \
|
2014-04-05 02:34:51 +02:00
|
|
|
wchar_test.cpp \
|
2012-08-15 00:32:42 +02:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
libBionicStandardTests_cflags := \
|
|
|
|
$(test_cflags) \
|
2012-09-13 02:25:30 +02:00
|
|
|
|
2014-07-11 03:53:41 +02:00
|
|
|
ifeq ($(MALLOC_IMPL),dlmalloc)
|
2014-06-14 03:04:31 +02:00
|
|
|
libBionicStandardTests_cflags += -DUSE_DLMALLOC
|
2014-07-11 03:53:41 +02:00
|
|
|
else
|
|
|
|
libBionicStandardTests_cflags += -DUSE_JEMALLOC
|
2014-06-14 03:04:31 +02:00
|
|
|
endif
|
|
|
|
|
2014-04-30 02:49:06 +02:00
|
|
|
libBionicStandardTests_cppflags := \
|
|
|
|
$(test_cppflags) \
|
|
|
|
|
2014-06-14 03:04:31 +02:00
|
|
|
libBionicStandardTests_c_includes := \
|
|
|
|
bionic/libc \
|
2014-08-20 18:16:57 +02:00
|
|
|
external/tinyxml2 \
|
2014-06-14 03:04:31 +02:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
libBionicStandardTests_ldlibs_host := \
|
|
|
|
-lrt \
|
2013-06-28 19:34:09 +02:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
module := libBionicStandardTests
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
2013-01-25 13:40:13 +01:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Fortify tests.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
$(foreach compiler,gcc clang, \
|
|
|
|
$(foreach test,1 2, \
|
|
|
|
$(eval fortify$(test)-tests-$(compiler)_cflags := \
|
|
|
|
$(test_cflags) \
|
2014-10-06 23:49:00 +02:00
|
|
|
-Wno-error \
|
2013-12-21 03:43:21 +01:00
|
|
|
-U_FORTIFY_SOURCE \
|
|
|
|
-D_FORTIFY_SOURCE=$(test) \
|
|
|
|
-DTEST_NAME=Fortify$(test)_$(compiler)); \
|
|
|
|
$(eval fortify$(test)-tests-$(compiler)_src_files := \
|
|
|
|
fortify_test.cpp); \
|
|
|
|
$(eval fortify_libs += fortify$(test)-tests-$(compiler)); \
|
|
|
|
) \
|
|
|
|
)
|
|
|
|
|
|
|
|
module := fortify1-tests-gcc
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
|
|
|
|
module := fortify2-tests-gcc
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
|
|
|
|
fortify1-tests-clang_clang_target := true
|
|
|
|
fortify1-tests-clang_cflags_host := -D__clang__
|
|
|
|
|
|
|
|
module := fortify1-tests-clang
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
|
|
|
|
fortify2-tests-clang_clang_target := true
|
|
|
|
|
|
|
|
fortify2-tests-clang_cflags_host := -D__clang__
|
|
|
|
|
|
|
|
module := fortify2-tests-clang
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
2013-01-25 13:40:13 +01:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Library of all tests (excluding the dynamic linker tests).
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
libBionicTests_whole_static_libraries := \
|
|
|
|
libBionicStandardTests \
|
|
|
|
$(fortify_libs) \
|
|
|
|
|
|
|
|
module := libBionicTests
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
2012-09-06 02:47:37 +02:00
|
|
|
|
2015-01-20 21:02:21 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
2015-02-27 04:03:54 +01:00
|
|
|
# Library of bionic customized gtest main function, with simplified output format.
|
2015-01-20 21:02:21 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
libBionicGtestMain_src_files := gtest_main.cpp
|
|
|
|
|
|
|
|
libBionicGtestMain_cflags := $(test_cflags)
|
|
|
|
|
|
|
|
libBionicGtestMain_cppflags := $(test_cppflags)
|
|
|
|
|
|
|
|
module := libBionicGtestMain
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
2015-02-27 04:03:54 +01:00
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Library of bionic customized gtest main function, with normal gtest output format,
|
|
|
|
# which is needed by bionic cts test.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
libBionicCtsGtestMain_src_files := gtest_main.cpp
|
|
|
|
|
|
|
|
libBionicCtsGtestMain_cflags := $(test_cflags)
|
|
|
|
|
|
|
|
libBionicCtsGtestMain_cppflags := $(test_cppflags) -DUSING_GTEST_OUTPUT_FORMAT
|
|
|
|
|
|
|
|
module := libBionicCtsGtestMain
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := STATIC_TEST_LIBRARY
|
2015-01-20 21:02:21 +01:00
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
build_type := host
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Tests for the device using bionic's .so. Run with:
|
2014-08-20 01:14:01 +02:00
|
|
|
# adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests32
|
|
|
|
# adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests64
|
2013-12-21 03:43:21 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
bionic-unit-tests_whole_static_libraries := \
|
|
|
|
libBionicTests \
|
2015-01-20 21:02:21 +01:00
|
|
|
libBionicGtestMain \
|
2013-12-21 03:43:21 +01:00
|
|
|
|
2014-08-20 18:16:57 +02:00
|
|
|
bionic-unit-tests_static_libraries := \
|
|
|
|
libtinyxml2 \
|
|
|
|
liblog \
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
bionic-unit-tests_src_files := \
|
2014-04-29 17:41:29 +02:00
|
|
|
atexit_test.cpp \
|
2014-08-28 23:12:12 +02:00
|
|
|
dl_test.cpp \
|
2014-02-06 15:34:21 +01:00
|
|
|
dlext_test.cpp \
|
2013-12-21 03:43:21 +01:00
|
|
|
dlfcn_test.cpp \
|
2013-08-29 20:37:33 +02:00
|
|
|
|
2014-07-02 02:17:46 +02:00
|
|
|
bionic-unit-tests_cflags := $(test_cflags)
|
2014-09-18 02:21:20 +02:00
|
|
|
|
|
|
|
bionic-unit-tests_conlyflags := \
|
|
|
|
-fexceptions \
|
|
|
|
-fnon-call-exceptions \
|
|
|
|
|
2014-07-02 02:17:46 +02:00
|
|
|
bionic-unit-tests_cppflags := $(test_cppflags)
|
2014-05-06 04:52:13 +02:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
bionic-unit-tests_ldflags := \
|
2014-08-28 23:12:12 +02:00
|
|
|
-Wl,--export-dynamic
|
2013-08-29 20:37:33 +02:00
|
|
|
|
2014-05-02 15:57:42 +02:00
|
|
|
bionic-unit-tests_c_includes := \
|
2014-09-05 03:23:00 +02:00
|
|
|
bionic/libc \
|
2014-05-02 15:57:42 +02:00
|
|
|
$(call include-path-for, libpagemap) \
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
bionic-unit-tests_shared_libraries_target := \
|
|
|
|
libdl \
|
2014-05-02 15:57:42 +02:00
|
|
|
libpagemap \
|
2014-08-28 23:12:12 +02:00
|
|
|
libdl_preempt_test_1 \
|
2014-11-01 01:27:02 +01:00
|
|
|
libdl_preempt_test_2
|
|
|
|
|
|
|
|
ifneq ($(filter $(TARGET_ARCH),arm arm64),$(TARGET_ARCH))
|
|
|
|
bionic-unit-tests_shared_libraries_target += libdl_test_df_1_global
|
|
|
|
endif
|
2013-08-29 20:37:33 +02:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
module := bionic-unit-tests
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := NATIVE_TEST
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
2013-08-27 23:32:15 +02:00
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
2013-12-21 03:43:21 +01:00
|
|
|
# Tests for the device linked against bionic's static library. Run with:
|
2014-08-20 01:14:01 +02:00
|
|
|
# adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static32
|
|
|
|
# adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static64
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
2013-12-21 03:43:21 +01:00
|
|
|
bionic-unit-tests-static_whole_static_libraries := \
|
|
|
|
libBionicTests \
|
2015-01-20 21:02:21 +01:00
|
|
|
libBionicGtestMain \
|
2012-10-31 22:20:03 +01:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
bionic-unit-tests-static_static_libraries := \
|
|
|
|
libm \
|
|
|
|
libc \
|
2014-09-27 00:37:52 +02:00
|
|
|
libc++_static \
|
|
|
|
libdl \
|
2014-08-20 18:16:57 +02:00
|
|
|
libtinyxml2 \
|
|
|
|
liblog \
|
2013-12-21 03:43:21 +01:00
|
|
|
|
|
|
|
bionic-unit-tests-static_force_static_executable := true
|
|
|
|
|
2014-09-30 00:16:46 +02:00
|
|
|
# libc and libc++ both define std::nothrow. libc's is a private symbol, but this
|
|
|
|
# still causes issues when linking libc.a and libc++.a, since private isn't
|
|
|
|
# effective until it has been linked. To fix this, just allow multiple symbol
|
|
|
|
# definitions for the static tests.
|
|
|
|
bionic-unit-tests-static_ldflags := -Wl,--allow-multiple-definition
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
module := bionic-unit-tests-static
|
|
|
|
module_tag := optional
|
|
|
|
build_type := target
|
|
|
|
build_target := NATIVE_TEST
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
2012-10-31 22:20:03 +01:00
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
2013-12-21 03:43:21 +01:00
|
|
|
# Tests to run on the host and linked against glibc. Run with:
|
|
|
|
# cd bionic/tests; mm bionic-unit-tests-glibc-run
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
2014-04-23 00:22:25 +02:00
|
|
|
|
2014-06-11 04:46:07 +02:00
|
|
|
ifeq ($(HOST_OS)-$(HOST_ARCH),$(filter $(HOST_OS)-$(HOST_ARCH),linux-x86 linux-x86_64))
|
2014-04-23 00:22:25 +02:00
|
|
|
|
2014-04-29 17:41:29 +02:00
|
|
|
bionic-unit-tests-glibc_src_files := \
|
|
|
|
atexit_test.cpp \
|
2014-09-15 23:13:24 +02:00
|
|
|
dlfcn_test.cpp \
|
2014-08-28 23:12:12 +02:00
|
|
|
dl_test.cpp \
|
|
|
|
|
|
|
|
bionic-unit-tests-glibc_shared_libraries := \
|
|
|
|
libdl_preempt_test_1 \
|
2014-11-01 01:27:02 +01:00
|
|
|
libdl_preempt_test_2
|
|
|
|
|
|
|
|
bionic-unit-tests-glibc_shared_libraries += libdl_test_df_1_global
|
2014-04-29 17:41:29 +02:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
bionic-unit-tests-glibc_whole_static_libraries := \
|
|
|
|
libBionicStandardTests \
|
2015-01-20 21:02:21 +01:00
|
|
|
libBionicGtestMain \
|
2015-02-01 06:32:10 +01:00
|
|
|
$(fortify_libs) \
|
2012-10-31 22:20:03 +01:00
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
bionic-unit-tests-glibc_ldlibs := \
|
2014-12-03 23:39:20 +01:00
|
|
|
-lrt -ldl -lutil \
|
2013-12-21 03:43:21 +01:00
|
|
|
|
2014-09-15 23:13:24 +02:00
|
|
|
bionic-unit-tests-glibc_c_includes := \
|
|
|
|
bionic/libc \
|
|
|
|
|
2014-07-02 02:17:46 +02:00
|
|
|
bionic-unit-tests-glibc_cflags := $(test_cflags)
|
|
|
|
bionic-unit-tests-glibc_cppflags := $(test_cppflags)
|
2014-09-15 23:13:24 +02:00
|
|
|
bionic-unit-tests-glibc_ldflags := -Wl,--export-dynamic
|
2014-05-06 04:52:13 +02:00
|
|
|
|
2014-11-15 04:58:26 +01:00
|
|
|
bionic-unit-tests-glibc_allow_asan := true
|
|
|
|
|
2013-12-21 03:43:21 +01:00
|
|
|
module := bionic-unit-tests-glibc
|
|
|
|
module_tag := optional
|
|
|
|
build_type := host
|
|
|
|
build_target := NATIVE_TEST
|
|
|
|
include $(LOCAL_PATH)/Android.build.mk
|
2013-10-25 19:06:57 +02:00
|
|
|
|
2014-10-03 22:46:42 +02:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Compile time tests.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Some of these are intentionally using = instead of := since we need access to
|
|
|
|
# some variables not initialtized until we're in the build system.
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := \
|
|
|
|
$(LOCAL_PATH)/Android.mk \
|
|
|
|
$(LOCAL_PATH)/file-check-cxx \
|
|
|
|
| $(HOST_OUT_EXECUTABLES)/FileCheck$(HOST_EXECUTABLE_SUFFIX) \
|
|
|
|
|
|
|
|
LOCAL_CXX = $(LOCAL_PATH)/file-check-cxx \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/FileCheck \
|
|
|
|
$($(LOCAL_2ND_ARCH_VAR_PREFIX)CXX_BARE) \
|
|
|
|
GCC \
|
|
|
|
|
|
|
|
LOCAL_CLANG := false
|
|
|
|
LOCAL_MODULE := bionic-compile-time-tests-g++
|
2015-01-23 00:36:24 +01:00
|
|
|
LOCAL_CPPFLAGS := -Wall
|
2014-10-08 20:21:32 +02:00
|
|
|
LOCAL_SRC_FILES := fortify_sprintf_warnings.cpp
|
2014-10-03 22:46:42 +02:00
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := \
|
|
|
|
$(LOCAL_PATH)/Android.mk \
|
|
|
|
$(LOCAL_PATH)/file-check-cxx \
|
|
|
|
| $(HOST_OUT_EXECUTABLES)/FileCheck$(HOST_EXECUTABLE_SUFFIX) \
|
|
|
|
|
|
|
|
LOCAL_CXX := $(LOCAL_PATH)/file-check-cxx \
|
|
|
|
$(HOST_OUT_EXECUTABLES)/FileCheck \
|
|
|
|
$(LLVM_PREBUILTS_PATH)/clang++ \
|
|
|
|
CLANG \
|
|
|
|
|
|
|
|
LOCAL_CLANG := true
|
|
|
|
LOCAL_MODULE := bionic-compile-time-tests-clang++
|
2015-01-23 00:36:24 +01:00
|
|
|
LOCAL_CPPFLAGS := -Wall
|
2014-10-08 20:21:32 +02:00
|
|
|
# FileCheck will error if there aren't any CLANG: lines in the file, but there
|
|
|
|
# don't appear to be any cases where clang _does_ emit warnings for sn?printf :(
|
2014-10-03 22:46:42 +02:00
|
|
|
LOCAL_SRC_FILES :=
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Host glibc tests.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2013-10-25 19:06:57 +02:00
|
|
|
# gtest needs ANDROID_DATA/local/tmp for death test output.
|
|
|
|
# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
|
|
|
|
# Use the current target out directory as ANDROID_DATA.
|
2014-03-19 18:45:08 +01:00
|
|
|
# BIONIC_TEST_FLAGS is either empty or it comes from the user.
|
2013-10-25 19:06:57 +02:00
|
|
|
bionic-unit-tests-glibc-run: bionic-unit-tests-glibc
|
|
|
|
mkdir -p $(TARGET_OUT_DATA)/local/tmp
|
|
|
|
ANDROID_DATA=$(TARGET_OUT_DATA) \
|
|
|
|
ANDROID_ROOT=$(TARGET_OUT) \
|
2014-12-02 23:00:13 +01:00
|
|
|
$(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc64 $(BIONIC_TEST_FLAGS)
|
2012-09-01 04:52:15 +02:00
|
|
|
|
2013-09-06 16:43:27 +02:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Run the unit tests built against x86 bionic on an x86 host.
|
|
|
|
# -----------------------------------------------------------------------------
|
2014-04-23 00:22:25 +02:00
|
|
|
|
2014-12-02 23:00:13 +01:00
|
|
|
include $(LOCAL_PATH)/../build/run-on-host.mk
|
|
|
|
|
2014-04-23 04:21:32 +02:00
|
|
|
ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
|
2015-01-23 20:35:48 +01:00
|
|
|
|
|
|
|
TEST_TIMEOUT := 0
|
|
|
|
|
2014-03-19 18:45:08 +01:00
|
|
|
# BIONIC_TEST_FLAGS is either empty or it comes from the user.
|
2014-12-02 23:00:13 +01:00
|
|
|
bionic-unit-tests-run-on-host32: bionic-unit-tests bionic-prepare-run-on-host
|
2013-09-06 16:43:27 +02:00
|
|
|
ANDROID_DATA=$(TARGET_OUT_DATA) \
|
2014-10-24 07:14:32 +02:00
|
|
|
ANDROID_DNS_MODE=local \
|
2013-09-06 16:43:27 +02:00
|
|
|
ANDROID_ROOT=$(TARGET_OUT) \
|
2015-01-23 20:35:48 +01:00
|
|
|
timeout $(TEST_TIMEOUT) \
|
2014-12-02 23:00:13 +01:00
|
|
|
$(TARGET_OUT_DATA)/nativetest/bionic-unit-tests/bionic-unit-tests32 $(BIONIC_TEST_FLAGS)
|
2014-04-23 04:21:32 +02:00
|
|
|
|
2014-12-02 23:00:13 +01:00
|
|
|
ifeq ($(TARGET_IS_64_BIT),true)
|
|
|
|
# add target to run lp64 tests
|
|
|
|
bionic-unit-tests-run-on-host64: bionic-unit-tests bionic-prepare-run-on-host
|
2014-08-21 22:54:03 +02:00
|
|
|
ANDROID_DATA=$(TARGET_OUT_DATA) \
|
2014-10-24 07:14:32 +02:00
|
|
|
ANDROID_DNS_MODE=local \
|
2014-08-21 22:54:03 +02:00
|
|
|
ANDROID_ROOT=$(TARGET_OUT) \
|
2015-01-23 20:35:48 +01:00
|
|
|
timeout $(TEST_TIMEOUT) \
|
2014-12-02 23:00:13 +01:00
|
|
|
$(TARGET_OUT_DATA)/nativetest64/bionic-unit-tests/bionic-unit-tests64 $(BIONIC_TEST_FLAGS)
|
2014-08-21 22:54:03 +02:00
|
|
|
endif
|
|
|
|
|
2014-12-02 23:00:13 +01:00
|
|
|
endif # x86 x86_64
|
2014-04-23 04:21:32 +02:00
|
|
|
endif # linux-x86
|
2013-09-06 16:43:27 +02:00
|
|
|
|
2014-06-03 01:29:00 +02:00
|
|
|
include $(call first-makefiles-under,$(LOCAL_PATH))
|