1# Copyright (C) 2008 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14# 15# Build control file for Bionic's test programs 16# define the BIONIC_TESTS environment variable to build the test programs 17# 18ifdef BIONIC_TESTS 19 20LOCAL_PATH:= $(call my-dir) 21 22# used to define a simple test program and build it as a standalone 23# device executable. 24# 25# you can use EXTRA_CFLAGS to indicate additional CFLAGS to use 26# in the build. the variable will be cleaned on exit 27# 28define device-test 29 $(foreach file,$(1), \ 30 $(eval include $(CLEAR_VARS)) \ 31 $(eval LOCAL_SRC_FILES := $(file)) \ 32 $(eval LOCAL_MODULE := $(notdir $(file:%.c=%))) \ 33 $(eval LOCAL_MODULE := $(LOCAL_MODULE:%.cpp=%)) \ 34 $(eval LOCAL_CFLAGS += $(EXTRA_CFLAGS)) \ 35 $(eval LOCAL_LDFLAGS += $(EXTRA_LDLIBS)) \ 36 $(eval LOCAL_MODULE_TAGS := tests) \ 37 $(eval include $(BUILD_EXECUTABLE)) \ 38 ) \ 39 $(eval EXTRA_CFLAGS :=) \ 40 $(eval EXTRA_LDLIBS :=) 41endef 42 43# same as 'device-test' but builds a host executable instead 44# you can use EXTRA_LDLIBS to indicate additional linker flags 45# 46define host-test 47 $(foreach file,$(1), \ 48 $(eval include $(CLEAR_VARS)) \ 49 $(eval LOCAL_SRC_FILES := $(file)) \ 50 $(eval LOCAL_MODULE := $(notdir $(file:%.c=%))) \ 51 $(eval LOCAL_MODULE := $(LOCAL_MODULE:%.cpp=%)) \ 52 $(eval LOCAL_CFLAGS += $(EXTRA_CFLAGS)) \ 53 $(eval LOCAL_LDLIBS += $(EXTRA_LDLIBS)) \ 54 $(eval LOCAL_MODULE_TAGS := tests) \ 55 $(eval include $(BUILD_HOST_EXECUTABLE)) \ 56 ) \ 57 $(eval EXTRA_CFLAGS :=) \ 58 $(eval EXTRA_LDLIBS :=) 59endef 60 61# First, the tests in 'common' 62 63sources := \ 64 common/test_clock.c \ 65 common/test_cpu_set.c \ 66 common/test_executable_destructor.c \ 67 common/test_getaddrinfo.c \ 68 common/test_gethostbyname.c \ 69 common/test_gethostname.c \ 70 common/test_pthread_cleanup_push.c \ 71 common/test_pthread_join.c \ 72 common/test_pthread_mutex.c \ 73 common/test_pthread_rwlock.c \ 74 common/test_pthread_once.c \ 75 common/test_semaphore.c \ 76 common/test_sem_post.c \ 77 common/test_seteuid.c \ 78 common/test_static_cpp_mutex.cpp \ 79 common/test_udp.c \ 80 81# _XOPEN_SOURCE=600 is needed to get pthread_mutexattr_settype() on GLibc 82# 83EXTRA_LDLIBS := -lpthread -lrt 84EXTRA_CFLAGS := -D_XOPEN_SOURCE=600 -DHOST 85$(call host-test, $(sources)) 86$(call device-test, $(sources)) 87 88# The 'test_static_executable_destructor is the same than 89# test_executable_destructor except that the generated program 90# is statically linked instead. 91include $(CLEAR_VARS) 92LOCAL_MODULE := test_static_executable_destructor 93LOCAL_SRC_FILES := common/test_executable_destructor.c 94LOCAL_MODULE_TAGS := tests 95LOCAL_STATIC_LIBRARIES := libc 96LOCAL_FORCE_STATIC_EXECUTABLE := true 97include $(BUILD_EXECUTABLE) 98 99include $(CLEAR_VARS) 100LOCAL_MODULE := test_static_executable_destructor 101LOCAL_SRC_FILES := common/test_executable_destructor.c 102LOCAL_MODULE_TAGS := tests 103LOCAL_LDFLAGS := -static 104include $(BUILD_HOST_EXECUTABLE) 105 106# The 'test_dlopen_null' tests requires specific linker flags 107# 108# The -Wl,--export-dynamic ensures that dynamic symbols are 109# exported from the executable. 110# 111# -Wl,-u,foo is used to ensure that symbol "foo" is not 112# garbage-collected by the gold linker, since the function 113# appears to be unused. 114# 115sources := common/test_dlopen_null.c \ 116 117EXTRA_LDLIBS := -ldl -Wl,--export-dynamic -Wl,-u,foo 118EXTRA_CFLAGS := -DHOST 119$(call host-test, $(sources)) 120 121EXTRA_LDLIBS := -ldl -Wl,--export-dynamic -Wl,-u,foo 122$(call device-test, $(sources)) 123 124 125# Second, the Bionic-specific tests 126 127sources := \ 128 bionic/test_mutex.c \ 129 bionic/test_cond.c \ 130 bionic/test_getgrouplist.c \ 131 bionic/test_netinet_icmp.c \ 132 bionic/test_pthread_cond.c \ 133 bionic/test_pthread_create.c \ 134 bionic/test_setjmp.c \ 135 136$(call device-test, $(sources)) 137 138# Third, the other tests 139 140sources := \ 141 other/test_sysconf.c \ 142 other/test_vfprintf_leak.c \ 143 144$(call device-test, $(sources)) 145 146# The relocations test is a bit special, since we need 147# to build one shared object and one executable that depends 148# on it. 149 150include $(CLEAR_VARS) 151LOCAL_SRC_FILES := bionic/lib_relocs.c 152LOCAL_MODULE := libtest_relocs 153 154LOCAL_MODULE_TAGS := tests 155include $(BUILD_SHARED_LIBRARY) 156 157include $(CLEAR_VARS) 158LOCAL_SRC_FILES := bionic/test_relocs.c 159LOCAL_MODULE := test_relocs 160LOCAL_SHARED_LIBRARIES := libtest_relocs 161LOCAL_MODULE_TAGS := tests 162include $(BUILD_EXECUTABLE) 163 164# This test tries to see if the static constructors in a 165# shared library are only called once. We thus need to 166# build a shared library, then call it from another 167# program. 168# 169include $(CLEAR_VARS) 170LOCAL_SRC_FILES := bionic/lib_static_init.cpp 171LOCAL_MODULE := libtest_static_init 172 173LOCAL_MODULE_TAGS := tests 174include $(BUILD_SHARED_LIBRARY) 175 176include $(CLEAR_VARS) 177LOCAL_SRC_FILES := bionic/test_static_init.cpp 178LOCAL_MODULE := test_static_init 179LOCAL_SHARED_LIBRARIES := libtest_static_init 180LOCAL_MODULE_TAGS := tests 181include $(BUILD_EXECUTABLE) 182 183# This test tries to see if static destructors are called 184# on dlclose(). We thus need to generate a C++ shared library 185include $(CLEAR_VARS) 186LOCAL_SRC_FILES := bionic/libdlclosetest1.cpp 187LOCAL_MODULE := libdlclosetest1 188 189LOCAL_MODULE_TAGS := tests 190include $(BUILD_SHARED_LIBRARY) 191 192# And this one does the same with __attribute__((constructor)) 193# and __attribute__((destructor)) 194include $(CLEAR_VARS) 195LOCAL_SRC_FILES := bionic/libdlclosetest2.c 196LOCAL_MODULE := libdlclosetest2 197 198LOCAL_MODULE_TAGS := tests 199include $(BUILD_SHARED_LIBRARY) 200 201include $(CLEAR_VARS) 202LOCAL_SRC_FILES := bionic/test_dlclose_destruction.c 203LOCAL_MODULE := test_dlclose_destruction 204LOCAL_LDFLAGS := -ldl 205#LOCAL_SHARED_LIBRARIES := libdlclosetest1 libdlclosetest2 206LOCAL_MODULE_TAGS := tests 207include $(BUILD_EXECUTABLE) 208 209# TODO: Add a variety of GLibc test programs too... 210 211# Hello World to test libstdc++ support 212 213sources := \ 214 common/hello_world.cpp \ 215 216EXTRA_CFLAGS := -mandroid 217#$(call device-test, $(sources)) 218 219endif # BIONIC_TESTS 220