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-10-25 03:37:21 +02:00
|
|
|
test_c_flags = \
|
|
|
|
-fstack-protector \
|
|
|
|
-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-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-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 \
|
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 = \
|
|
|
|
dlopen_test.cpp \
|
|
|
|
|
2012-09-06 02:47:37 +02:00
|
|
|
# Build 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-09-06 02:47:37 +02:00
|
|
|
# Build 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
|
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-08-15 00:32:42 +02:00
|
|
|
# Build 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.
|
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
|