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
|
|
|
#
|
|
|
|
|
|
|
|
ifneq ($(BUILD_TINY_ANDROID), true)
|
2012-08-15 00:32:42 +02:00
|
|
|
|
|
|
|
LOCAL_PATH := $(call my-dir)
|
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Benchmarks.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
benchmark_c_flags = \
|
|
|
|
-O2 \
|
|
|
|
-Wall -Wextra \
|
|
|
|
-Werror \
|
|
|
|
|
|
|
|
benchmark_src_files = \
|
|
|
|
benchmark_main.cpp \
|
|
|
|
string_benchmark.cpp \
|
|
|
|
|
|
|
|
# Build benchmarks for the device (with bionic's .so). Run with:
|
|
|
|
# adb shell bionic-benchmarks
|
|
|
|
include $(CLEAR_VARS)
|
|
|
|
LOCAL_MODULE := bionic-benchmarks
|
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
|
|
|
LOCAL_CFLAGS += $(benchmark_c_flags)
|
|
|
|
LOCAL_C_INCLUDES += external/stlport/stlport bionic/ bionic/libstdc++/include
|
|
|
|
LOCAL_SHARED_LIBRARIES += libstlport
|
|
|
|
LOCAL_SRC_FILES := $(benchmark_src_files)
|
|
|
|
include $(BUILD_EXECUTABLE)
|
|
|
|
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Unit tests.
|
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
|
2012-10-25 03:37:21 +02:00
|
|
|
test_c_flags = \
|
2013-01-11 02:12:29 +01:00
|
|
|
-fstack-protector-all \
|
2012-10-25 03:37:21 +02:00
|
|
|
-g \
|
|
|
|
-Wall -Wextra \
|
|
|
|
-Werror \
|
|
|
|
|
2012-08-15 00:32:42 +02:00
|
|
|
test_src_files = \
|
2012-10-26 05:55:23 +02:00
|
|
|
dirent_test.cpp \
|
2012-11-03 01:05:20 +01:00
|
|
|
fenv_test.cpp \
|
2013-01-11 23:43:05 +01:00
|
|
|
getauxval_test.cpp \
|
2012-08-17 00:59:12 +02:00
|
|
|
getcwd_test.cpp \
|
2012-10-29 22:27:10 +01:00
|
|
|
libgen_test.cpp \
|
2012-09-06 02:47:37 +02:00
|
|
|
pthread_test.cpp \
|
2012-08-15 00:32:42 +02:00
|
|
|
regex_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 \
|
2012-09-25 02:55:15 +02:00
|
|
|
stdio_test.cpp \
|
2012-10-01 22:11:03 +02:00
|
|
|
stdlib_test.cpp \
|
2012-09-08 08:17:54 +02:00
|
|
|
string_test.cpp \
|
2012-09-13 19:52:52 +02:00
|
|
|
stubs_test.cpp \
|
2013-01-02 23:23:43 +01:00
|
|
|
unistd_test.cpp \
|
2012-08-15 00:32:42 +02:00
|
|
|
|
2012-09-13 02:25:30 +02:00
|
|
|
test_dynamic_ldflags = -Wl,--export-dynamic -Wl,-u,DlSymTestFunction
|
|
|
|
test_dynamic_src_files = \
|
2012-12-19 00:57:55 +01:00
|
|
|
dlfcn_test.cpp \
|
2012-09-13 02:25:30 +02:00
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# Build tests for the device (with bionic's .so). Run with:
|
2012-08-15 00:32:42 +02:00
|
|
|
# adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
|
|
|
|
include $(CLEAR_VARS)
|
2012-08-16 05:27:04 +02:00
|
|
|
LOCAL_MODULE := bionic-unit-tests
|
2012-09-05 23:27:17 +02:00
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
2012-10-25 03:37:21 +02:00
|
|
|
LOCAL_CFLAGS += $(test_c_flags)
|
2012-09-13 02:25:30 +02:00
|
|
|
LOCAL_LDFLAGS += $(test_dynamic_ldflags)
|
|
|
|
LOCAL_SHARED_LIBRARIES += libdl
|
|
|
|
LOCAL_SRC_FILES := $(test_src_files) $(test_dynamic_src_files)
|
2012-08-15 00:32:42 +02:00
|
|
|
include $(BUILD_NATIVE_TEST)
|
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# Build tests for the device (with bionic's .a). Run with:
|
2012-09-06 02:47:37 +02:00
|
|
|
# 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
|
2012-10-25 03:37:21 +02:00
|
|
|
LOCAL_CFLAGS += $(test_c_flags)
|
2012-09-13 02:25:30 +02:00
|
|
|
LOCAL_FORCE_STATIC_EXECUTABLE := true
|
2012-09-06 02:47:37 +02:00
|
|
|
LOCAL_SRC_FILES := $(test_src_files)
|
2012-09-13 02:25:30 +02:00
|
|
|
LOCAL_STATIC_LIBRARIES += libstlport_static libstdc++ libm libc
|
2012-09-06 02:47:37 +02:00
|
|
|
include $(BUILD_NATIVE_TEST)
|
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Test library for the unit tests.
|
|
|
|
# -----------------------------------------------------------------------------
|
2012-10-31 22:20:03 +01:00
|
|
|
|
|
|
|
# Build no-elf-hash-table-library.so to test dlopen(3) on a library that
|
2013-01-07 23:18:22 +01:00
|
|
|
# only has a GNU-style hash table. MIPS doesn't support GNU hash style.
|
|
|
|
ifneq ($(TARGET_ARCH),mips)
|
2012-10-31 22:20:03 +01:00
|
|
|
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)
|
2013-01-07 23:18:22 +01:00
|
|
|
endif
|
2012-10-31 22:20:03 +01:00
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# -----------------------------------------------------------------------------
|
|
|
|
# Unit tests built against glibc.
|
|
|
|
# -----------------------------------------------------------------------------
|
2012-10-31 22:20:03 +01:00
|
|
|
|
2012-11-09 00:37:43 +01:00
|
|
|
# Build tests for the host (with glibc).
|
2012-08-15 00:32:42 +02:00
|
|
|
# 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.
|
2012-09-13 20:01:46 +02:00
|
|
|
ifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
|
2012-08-15 00:32:42 +02:00
|
|
|
include $(CLEAR_VARS)
|
2012-08-16 05:27:04 +02:00
|
|
|
LOCAL_MODULE := bionic-unit-tests-glibc
|
2012-09-05 23:27:17 +02:00
|
|
|
LOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
|
2012-10-25 03:37:21 +02:00
|
|
|
LOCAL_CFLAGS += $(test_c_flags)
|
2012-09-13 02:25:30 +02:00
|
|
|
LOCAL_LDFLAGS += -lpthread -ldl
|
|
|
|
LOCAL_LDFLAGS += $(test_dynamic_ldflags)
|
|
|
|
LOCAL_SRC_FILES := $(test_src_files) $(test_dynamic_src_files)
|
2012-08-15 00:32:42 +02:00
|
|
|
include $(BUILD_HOST_NATIVE_TEST)
|
2012-09-13 20:01:46 +02:00
|
|
|
endif
|
2012-09-01 04:52:15 +02:00
|
|
|
|
|
|
|
endif # !BUILD_TINY_ANDROID
|