summaryrefslogtreecommitdiff
path: root/tests/bionic/libc/Android.mk
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bionic/libc/Android.mk')
-rw-r--r--tests/bionic/libc/Android.mk114
1 files changed, 114 insertions, 0 deletions
diff --git a/tests/bionic/libc/Android.mk b/tests/bionic/libc/Android.mk
new file mode 100644
index 00000000..14ac0c0c
--- /dev/null
+++ b/tests/bionic/libc/Android.mk
@@ -0,0 +1,114 @@
+# Copyright (C) 2008 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.
+#
+# Build control file for Bionic's test programs
+# define the BIONIC_TESTS environment variable to build the test programs
+#
+ifdef BIONIC_TESTS
+
+LOCAL_PATH:= $(call my-dir)
+
+# used to define a simple test program and build it as a standalone
+# device executable.
+#
+# you can use EXTRA_CFLAGS to indicate additional CFLAGS to use
+# in the build. the variable will be cleaned on exit
+#
+define device-test
+ $(foreach file,$(1), \
+ $(eval include $(CLEAR_VARS)) \
+ $(eval LOCAL_SRC_FILES := $(file)) \
+ $(eval LOCAL_MODULE := $(notdir $(file:%.c=%))) \
+ $(eval $(info LOCAL_MODULE=$(LOCAL_MODULE))) \
+ $(eval LOCAL_CFLAGS += $(EXTRA_CFLAGS)) \
+ $(eval LOCAL_MODULE_TAGS := tests) \
+ $(eval include $(BUILD_EXECUTABLE)) \
+ ) \
+ $(eval EXTRA_CFLAGS :=)
+endef
+
+# same as 'device-test' but builds a host executable instead
+# you can use EXTRA_LDLIBS to indicate additional linker flags
+#
+define host-test
+ $(foreach file,$(1), \
+ $(eval include $(CLEAR_VARS)) \
+ $(eval LOCAL_SRC_FILES := $(file)) \
+ $(eval LOCAL_MODULE := $(notdir $(file:%.c=%))) \
+ $(eval $(info LOCAL_MODULE=$(LOCAL_MODULE) file=$(file))) \
+ $(eval LOCAL_CFLAGS += $(EXTRA_CFLAGS)) \
+ $(eval LOCAL_LDLIBS += $(EXTRA_LDLIBS)) \
+ $(eval LOCAL_MODULE_TAGS := tests) \
+ $(eval include $(BUILD_HOST_EXECUTABLE)) \
+ ) \
+ $(eval EXTRA_CFLAGS :=) \
+ $(eval EXTRA_LDLIBS :=)
+endef
+
+# First, the tests in 'common'
+
+sources := \
+ common/test_gethostbyname.c \
+ common/test_gethostname.c \
+ common/test_pthread_cleanup_push.c \
+ common/test_pthread_getcpuclockid.c \
+ common/test_pthread_join.c \
+ common/test_pthread_once.c \
+ common/test_semaphore.c \
+ common/test_seteuid.c \
+ common/test_static_cpp_mutex.cpp \
+ common/test_tm_zone.c \
+ common/test_udp.c \
+
+EXTRA_LDLIBS := -lpthread -lrt
+$(call host-test, $(sources))
+$(call device-test, $(sources))
+
+sources := \
+ common/test_libgen.c \
+
+EXTRA_CFLAGS := -DHOST
+$(call host-test, $(sources))
+$(call device-test, $(sources))
+
+# Second, the Bionic-specific tests
+
+sources := \
+ bionic/test_mutex.c \
+ bionic/test_cond.c \
+ bionic/test_getgrouplist.c \
+ bionic/test_netinet_icmp.c \
+ bionic/test_pthread_cond.c \
+ bionic/test_pthread_create.c \
+
+$(call device-test, $(sources))
+
+# Third, the other tests
+
+sources := \
+ other/bench_locks.c \
+ other/test_aligned.c \
+ other/test_arc4random.c \
+ other/test_atomics.c \
+ other/test_sysconf.c \
+ other/test_system.c \
+ other/test_thread_max.c \
+ other/test_timer_create.c \
+ other/test_vfprintf_leak.c \
+
+$(call device-test, $(sources))
+
+# TODO: Add a variety of GLibc test programs too...
+
+endif # BIONIC_TESTS