0f461e35f6
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
266 lines
9.3 KiB
Makefile
266 lines
9.3 KiB
Makefile
#
|
|
# 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.
|
|
#
|
|
|
|
ifneq ($(BUILD_TINY_ANDROID),true)
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Unit tests.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
test_c_flags = \
|
|
-fstack-protector-all \
|
|
-g \
|
|
-Wall -Wextra \
|
|
-Werror \
|
|
-fno-builtin \
|
|
|
|
ifeq ($(TARGET_ARCH),aarch64)
|
|
$(info TODO: $(LOCAL_PATH)/Android.mk -fstack-protector not yet available for the AArch64 toolchain)
|
|
test_c_flags += -fno-stack-protector
|
|
endif # aarch64
|
|
|
|
test_src_files = \
|
|
buffer_tests.cpp \
|
|
dirent_test.cpp \
|
|
eventfd_test.cpp \
|
|
fcntl_test.cpp \
|
|
fenv_test.cpp \
|
|
getauxval_test.cpp \
|
|
getcwd_test.cpp \
|
|
inttypes_test.cpp \
|
|
libc_logging_test.cpp \
|
|
libgen_test.cpp \
|
|
malloc_test.cpp \
|
|
math_test.cpp \
|
|
netdb_test.cpp \
|
|
pthread_test.cpp \
|
|
regex_test.cpp \
|
|
sched_test.cpp \
|
|
signal_test.cpp \
|
|
stack_protector_test.cpp \
|
|
stack_unwinding_test.cpp \
|
|
statvfs_test.cpp \
|
|
stdio_test.cpp \
|
|
stdlib_test.cpp \
|
|
string_test.cpp \
|
|
strings_test.cpp \
|
|
stubs_test.cpp \
|
|
sys_epoll_test.cpp \
|
|
sys_resource_test.cpp \
|
|
sys_select_test.cpp \
|
|
sys_sendfile_test.cpp \
|
|
sys_stat_test.cpp \
|
|
sys_syscall_test.cpp \
|
|
sys_time_test.cpp \
|
|
sys_types_test.cpp \
|
|
system_properties_test.cpp \
|
|
time_test.cpp \
|
|
unistd_test.cpp \
|
|
|
|
test_dynamic_ldflags = -Wl,--export-dynamic -Wl,-u,DlSymTestFunction
|
|
test_dynamic_src_files = \
|
|
dlfcn_test.cpp \
|
|
|
|
test_fortify_static_libraries = \
|
|
fortify1-tests-gcc fortify2-tests-gcc fortify1-tests-clang fortify2-tests-clang
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := bionic-unit-tests-unwind-test-impl
|
|
LOCAL_CFLAGS += $(test_c_flags) -fexceptions -fnon-call-exceptions
|
|
LOCAL_SRC_FILES := stack_unwinding_test_impl.c
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := bionic-unit-tests-unwind-test-impl-host
|
|
LOCAL_CFLAGS += $(test_c_flags) -fexceptions -fnon-call-exceptions
|
|
LOCAL_SRC_FILES := stack_unwinding_test_impl.c
|
|
include $(BUILD_HOST_STATIC_LIBRARY)
|
|
|
|
# Build tests for the device (with bionic's .so). Run with:
|
|
# adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := bionic-unit-tests
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_CFLAGS += $(test_c_flags)
|
|
LOCAL_LDFLAGS += $(test_dynamic_ldflags)
|
|
LOCAL_SHARED_LIBRARIES += libdl
|
|
LOCAL_SRC_FILES := $(test_src_files) $(test_dynamic_src_files)
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := $(test_fortify_static_libraries)
|
|
LOCAL_STATIC_LIBRARIES += bionic-unit-tests-unwind-test-impl
|
|
include $(BUILD_NATIVE_TEST)
|
|
|
|
# Build tests for the device (with bionic's .a). Run with:
|
|
# adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := bionic-unit-tests-static
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
|
LOCAL_WHOLE_STATIC_LIBRARIES += libBionicTests
|
|
LOCAL_STATIC_LIBRARIES += libstlport_static libstdc++ libm libc
|
|
include $(BUILD_NATIVE_TEST)
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# We build the static unit tests as a library so they can be used both for
|
|
# bionic-unit-tests-static and also as part of CTS.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := libBionicTests
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_CFLAGS += $(test_c_flags)
|
|
LOCAL_SRC_FILES := $(test_src_files)
|
|
LOCAL_CFLAGS += \
|
|
-DGTEST_OS_LINUX_ANDROID \
|
|
-DGTEST_HAS_STD_STRING \
|
|
|
|
LOCAL_C_INCLUDES += \
|
|
bionic bionic/libstdc++/include \
|
|
external/gtest/include \
|
|
external/stlport/stlport \
|
|
|
|
LOCAL_WHOLE_STATIC_LIBRARIES := \
|
|
$(test_fortify_static_libraries) \
|
|
bionic-unit-tests-unwind-test-impl \
|
|
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Test library for the unit tests.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Build no-elf-hash-table-library.so to test dlopen(3) on a library that
|
|
# only has a GNU-style hash table. MIPS doesn't support GNU hash style.
|
|
ifneq ($(TARGET_ARCH),mips)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := no-elf-hash-table-library
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_SRC_FILES := empty.cpp
|
|
LOCAL_LDFLAGS := -Wl,--hash-style=gnu
|
|
include $(BUILD_SHARED_LIBRARY)
|
|
endif
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Unit tests built against glibc.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Build tests for the host (with glibc).
|
|
# Note that this will build against glibc, so it's not useful for testing
|
|
# bionic's implementation, but it does let you use glibc as a reference
|
|
# implementation for testing the tests themselves.
|
|
ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
|
|
include $(CLEAR_VARS)
|
|
LOCAL_MODULE := bionic-unit-tests-glibc
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_CFLAGS += $(test_c_flags)
|
|
LOCAL_LDFLAGS += -lpthread -ldl -lrt
|
|
LOCAL_LDFLAGS += $(test_dynamic_ldflags)
|
|
LOCAL_SRC_FILES := $(test_src_files) $(test_dynamic_src_files)
|
|
LOCAL_STATIC_LIBRARIES += bionic-unit-tests-unwind-test-impl-host
|
|
include $(BUILD_HOST_NATIVE_TEST)
|
|
|
|
# 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.
|
|
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) \
|
|
$(HOST_OUT_EXECUTABLES)/bionic-unit-tests-glibc
|
|
endif
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# Run the unit tests built against x86 bionic on an x86 host.
|
|
# -----------------------------------------------------------------------------
|
|
|
|
ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
|
|
ifeq ($(TARGET_ARCH),$(filter $(TARGET_ARCH),x86 x86_64))
|
|
ifeq ($(TARGET_ARCH),x86)
|
|
LINKER = linker
|
|
else
|
|
LINKER = linker64
|
|
endif
|
|
# gtest needs ANDROID_DATA/local/tmp for death test output.
|
|
# Make sure to create ANDROID_DATA/local/tmp if doesn't exist.
|
|
# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
|
|
bionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/$(LINKER) $(TARGET_OUT_EXECUTABLES)/sh
|
|
if [ ! -d /system -o ! -d /system/bin ]; then \
|
|
echo "Attempting to create /system/bin"; \
|
|
sudo mkdir -p -m 0777 /system/bin; \
|
|
fi
|
|
mkdir -p $(TARGET_OUT_DATA)/local/tmp
|
|
cp $(TARGET_OUT_EXECUTABLES)/$(LINKER) /system/bin
|
|
cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
|
|
ANDROID_DATA=$(TARGET_OUT_DATA) \
|
|
ANDROID_ROOT=$(TARGET_OUT) \
|
|
LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
|
|
$(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests
|
|
endif
|
|
endif
|
|
|
|
# -----------------------------------------------------------------------------
|
|
# FORTIFY_SOURCE tests
|
|
# -----------------------------------------------------------------------------
|
|
|
|
fortify_c_includes = \
|
|
bionic \
|
|
bionic/libstdc++/include \
|
|
external/stlport/stlport \
|
|
external/gtest/include
|
|
fortify_test_files = fortify_test.cpp
|
|
|
|
# -Wno-error=unused-parameter needed as
|
|
# external/stlport/stlport/stl/_threads.c (included from
|
|
# external/gtest/include/gtest/gtest.h) does not compile cleanly under
|
|
# clang. TODO: fix this.
|
|
fortify_c_flags = $(test_c_flags) -Wno-error=unused-parameter
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := $(fortify_test_files)
|
|
LOCAL_MODULE := fortify1-tests-gcc
|
|
LOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DTEST_NAME=Fortify1_Gcc
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_C_INCLUDES += $(fortify_c_includes)
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := $(fortify_test_files)
|
|
LOCAL_MODULE := fortify2-tests-gcc
|
|
LOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -DTEST_NAME=Fortify2_Gcc
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_C_INCLUDES += $(fortify_c_includes)
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := $(fortify_test_files)
|
|
LOCAL_MODULE := fortify1-tests-clang
|
|
LOCAL_CLANG := true
|
|
LOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DTEST_NAME=Fortify1_Clang
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_C_INCLUDES += $(fortify_c_includes)
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
include $(CLEAR_VARS)
|
|
LOCAL_SRC_FILES := $(fortify_test_files)
|
|
LOCAL_MODULE := fortify2-tests-clang
|
|
LOCAL_CLANG := true
|
|
LOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -DTEST_NAME=Fortify2_Clang
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
LOCAL_C_INCLUDES += $(fortify_c_includes)
|
|
include $(BUILD_STATIC_LIBRARY)
|
|
|
|
endif # !BUILD_TINY_ANDROID
|