Android.mk revision e60c4f0a6cb5836caa8d0de299cc83fe4b13744c
1cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes#
2cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# Copyright (C) 2012 The Android Open Source Project
3cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes#
4cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# Licensed under the Apache License, Version 2.0 (the "License");
5cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# you may not use this file except in compliance with the License.
6cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# You may obtain a copy of the License at
7cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes#
8cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes#      http://www.apache.org/licenses/LICENSE-2.0
9cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes#
10cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# Unless required by applicable law or agreed to in writing, software
11cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# distributed under the License is distributed on an "AS IS" BASIS,
12cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# See the License for the specific language governing permissions and
14cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# limitations under the License.
155ac9eee1d3291a0d203a125849b4636a11c0d124Benoit Goby#
165ac9eee1d3291a0d203a125849b4636a11c0d124Benoit Goby
175ac9eee1d3291a0d203a125849b4636a11c0d124Benoit Gobyifneq ($(BUILD_TINY_ANDROID), true)
18cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes
19cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott HughesLOCAL_PATH := $(call my-dir)
20cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes
217be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
227be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Benchmarks.
237be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
247be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes
257be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughesbenchmark_c_flags = \
267be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes    -O2 \
277be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes    -Wall -Wextra \
287be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes    -Werror \
299edb3e004b487e08cbbb54f2af18b15241550513Elliott Hughes    -fno-builtin \
307be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes
317be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughesbenchmark_src_files = \
327be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes    benchmark_main.cpp \
339edb3e004b487e08cbbb54f2af18b15241550513Elliott Hughes    math_benchmark.cpp \
34b27e200ad6170ba3163f5ae6ba581bdaabb2e696Colin Cross    property_benchmark.cpp \
357be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes    string_benchmark.cpp \
364a05bef4c06dac05f1c9aa8cfc5b7e7dd6642385Elliott Hughes    time_benchmark.cpp \
377be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes
387be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Build benchmarks for the device (with bionic's .so). Run with:
397be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes#   adb shell bionic-benchmarks
407be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughesinclude $(CLEAR_VARS)
417be369d4c60e9df2316fdb6c73181a40020abef2Elliott HughesLOCAL_MODULE := bionic-benchmarks
427be369d4c60e9df2316fdb6c73181a40020abef2Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
437be369d4c60e9df2316fdb6c73181a40020abef2Elliott HughesLOCAL_CFLAGS += $(benchmark_c_flags)
447be369d4c60e9df2316fdb6c73181a40020abef2Elliott HughesLOCAL_C_INCLUDES += external/stlport/stlport bionic/ bionic/libstdc++/include
457be369d4c60e9df2316fdb6c73181a40020abef2Elliott HughesLOCAL_SHARED_LIBRARIES += libstlport
467be369d4c60e9df2316fdb6c73181a40020abef2Elliott HughesLOCAL_SRC_FILES := $(benchmark_src_files)
477be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughesinclude $(BUILD_EXECUTABLE)
487be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes
497be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
507be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Unit tests.
517be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
527be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes
53ad88a0863110798cef5169dcf917e18b967a7cf6Elliott Hughestest_c_flags = \
54dcab1b2c76a498c56bc00024613386de8b4b2aaeNick Kralevich    -fstack-protector-all \
55ad88a0863110798cef5169dcf917e18b967a7cf6Elliott Hughes    -g \
56ad88a0863110798cef5169dcf917e18b967a7cf6Elliott Hughes    -Wall -Wextra \
57ad88a0863110798cef5169dcf917e18b967a7cf6Elliott Hughes    -Werror \
58a0ee07829a9ba7e99ef68e8c12551301cc797f0fElliott Hughes    -fno-builtin \
59ad88a0863110798cef5169dcf917e18b967a7cf6Elliott Hughes
60cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughestest_src_files = \
61063cfb2084ea4b12d3c85b2d2c44e888f0857eb4Elliott Hughes    dirent_test.cpp \
628baa929d5d3bcf63381cf78ba76168c80c303f5eKito Cheng    eventfd_test.cpp \
6390e10d41c4271a5d517f60f4ff1d2891b8ccc034Elliott Hughes    fenv_test.cpp \
642c5153b043b44e9935a334ae9b2d5a4bc5258b40Nick Kralevich    getauxval_test.cpp \
6504a83a48ed89f433c78e31106ed50059764797a0Elliott Hughes    getcwd_test.cpp \
6674f0833df6d04d51eb4e554845862ed7279f78b0Elliott Hughes    inttypes_test.cpp \
678f2a5a0b40fc82126c691d5c30131d908772aab7Elliott Hughes    libc_logging_test.cpp \
6858b575485c446f9d76ee00f67516ed42cf017769Elliott Hughes    libgen_test.cpp \
69885f3b9cad01b8158aadc55c159c17dbf34f622cChristopher Ferris    malloc_test.cpp \
70a0ee07829a9ba7e99ef68e8c12551301cc797f0fElliott Hughes    math_test.cpp \
71d3b9d11369ee15dc0ce512014284c3c5432f2813Elliott Hughes    netdb_test.cpp \
72bfeab1bbe7e8d0c08b7e3f46aedab64e3b2bf706Elliott Hughes    pthread_test.cpp \
73cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes    regex_test.cpp \
74da73f655fcbac6e1a8bfd35303cef6f41187d12bElliott Hughes    signal_test.cpp \
75ad88a0863110798cef5169dcf917e18b967a7cf6Elliott Hughes    stack_protector_test.cpp \
76c45087bffa528c0809f0df2e0a3708eba7018b33Sergey Melnikov    stack_unwinding_test.cpp \
7706040fd75c1edff9e5ffb2b3d3e2a6e66d57c11dElliott Hughes    statvfs_test.cpp \
7891875dcd6e17b7f3b251efe9b236b905ef414ddeElliott Hughes    stdio_test.cpp \
79774c7f54ff375d71106283d42779b0cc5f238f87Elliott Hughes    stdlib_test.cpp \
80b5f053b5a7deb084e7a052d527e0aa41339ae05cIrina Tirdea    string_test.cpp \
8173964c592c8d23901e9479893dfbd3d0f25bab04Elliott Hughes    strings_test.cpp \
822a54e5ecd0a96398e8d7d9b1629ecf8fb1633a2bKenny Root    stubs_test.cpp \
83d0be7c8f9a06b3ca8ea7647ea35c8f9dc63f0fe1Elliott Hughes    sys_stat_test.cpp \
84b27e200ad6170ba3163f5ae6ba581bdaabb2e696Colin Cross    system_properties_test.cpp \
85e0175ca7e440a87e9d03f249fc8f210063df7908Elliott Hughes    time_test.cpp \
86a55f63083fb16b2595f517a3260083e5f8cddd02Elliott Hughes    unistd_test.cpp \
87cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes
88acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaotest_dynamic_ldflags = -Wl,--export-dynamic -Wl,-u,DlSymTestFunction
89acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaotest_dynamic_src_files = \
90e66190d2a97a713ae4b4786e60ca3d67ab8aa192Elliott Hughes    dlfcn_test.cpp \
91acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhao
925bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichtest_fortify_static_libraries = \
935bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich    fortify1-tests-gcc fortify2-tests-gcc fortify1-tests-clang fortify2-tests-clang
945bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich
95c45087bffa528c0809f0df2e0a3708eba7018b33Sergey Melnikovinclude $(CLEAR_VARS)
96c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_MODULE := bionic-unit-tests-unwind-test-impl
97c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_CFLAGS += $(test_c_flags) -fexceptions -fnon-call-exceptions
98c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_SRC_FILES := stack_unwinding_test_impl.c
99c45087bffa528c0809f0df2e0a3708eba7018b33Sergey Melnikovinclude $(BUILD_STATIC_LIBRARY)
100c45087bffa528c0809f0df2e0a3708eba7018b33Sergey Melnikov
101c45087bffa528c0809f0df2e0a3708eba7018b33Sergey Melnikovinclude $(CLEAR_VARS)
102c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_MODULE := bionic-unit-tests-unwind-test-impl-host
103c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_CFLAGS += $(test_c_flags) -fexceptions -fnon-call-exceptions
104c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_SRC_FILES := stack_unwinding_test_impl.c
105c45087bffa528c0809f0df2e0a3708eba7018b33Sergey Melnikovinclude $(BUILD_HOST_STATIC_LIBRARY)
106c45087bffa528c0809f0df2e0a3708eba7018b33Sergey Melnikov
1077be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Build tests for the device (with bionic's .so). Run with:
108cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes#   adb shell /data/nativetest/bionic-unit-tests/bionic-unit-tests
109cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughesinclude $(CLEAR_VARS)
1107b841f3b4ad121dd64f639c1858b42defffd60bdJoe OnoratoLOCAL_MODULE := bionic-unit-tests
1112e8f4345dfe16e64d7a3c26f688f17f2b48b2dd1Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
112ad88a0863110798cef5169dcf917e18b967a7cf6Elliott HughesLOCAL_CFLAGS += $(test_c_flags)
113acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaoLOCAL_LDFLAGS += $(test_dynamic_ldflags)
114acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaoLOCAL_SHARED_LIBRARIES += libdl
115acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaoLOCAL_SRC_FILES := $(test_src_files) $(test_dynamic_src_files)
1165bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_WHOLE_STATIC_LIBRARIES := $(test_fortify_static_libraries)
117c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_STATIC_LIBRARIES += bionic-unit-tests-unwind-test-impl
118cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughesinclude $(BUILD_NATIVE_TEST)
119cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes
1207be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Build tests for the device (with bionic's .a). Run with:
121bfeab1bbe7e8d0c08b7e3f46aedab64e3b2bf706Elliott Hughes#   adb shell /data/nativetest/bionic-unit-tests-static/bionic-unit-tests-static
122bfeab1bbe7e8d0c08b7e3f46aedab64e3b2bf706Elliott Hughesinclude $(CLEAR_VARS)
123bfeab1bbe7e8d0c08b7e3f46aedab64e3b2bf706Elliott HughesLOCAL_MODULE := bionic-unit-tests-static
124bfeab1bbe7e8d0c08b7e3f46aedab64e3b2bf706Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
125acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaoLOCAL_FORCE_STATIC_EXECUTABLE := true
126153d92765bb693541abf49a2a1d31335e2c90348Christopher FerrisLOCAL_WHOLE_STATIC_LIBRARIES += libBionicTests
1278240bed918722944c9985bc0cca89eb44c4f6c91Christopher FerrisLOCAL_STATIC_LIBRARIES += libstlport_static libstdc++ libm libc
128bfeab1bbe7e8d0c08b7e3f46aedab64e3b2bf706Elliott Hughesinclude $(BUILD_NATIVE_TEST)
129bfeab1bbe7e8d0c08b7e3f46aedab64e3b2bf706Elliott Hughes
1307be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
131153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferris# We build the static unit tests as a library so they can be used both for
132153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferris# bionic-unit-tests-static and also as part of CTS.
133153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferris# -----------------------------------------------------------------------------
134153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferris
135153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferrisinclude $(CLEAR_VARS)
136153d92765bb693541abf49a2a1d31335e2c90348Christopher FerrisLOCAL_MODULE := libBionicTests
137153d92765bb693541abf49a2a1d31335e2c90348Christopher FerrisLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
138153d92765bb693541abf49a2a1d31335e2c90348Christopher FerrisLOCAL_CFLAGS += $(test_c_flags)
139153d92765bb693541abf49a2a1d31335e2c90348Christopher FerrisLOCAL_SRC_FILES := $(test_src_files)
1408240bed918722944c9985bc0cca89eb44c4f6c91Christopher FerrisLOCAL_CFLAGS += \
1418240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris    -DGTEST_OS_LINUX_ANDROID \
1428240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris    -DGTEST_HAS_STD_STRING \
1438240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris
1448240bed918722944c9985bc0cca89eb44c4f6c91Christopher FerrisLOCAL_C_INCLUDES += \
1458240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris    bionic bionic/libstdc++/include \
1468240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris    external/gtest/include \
1478240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris    external/stlport/stlport \
1488240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris
1498240bed918722944c9985bc0cca89eb44c4f6c91Christopher FerrisLOCAL_WHOLE_STATIC_LIBRARIES := \
1508240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris    $(test_fortify_static_libraries) \
1518240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris    bionic-unit-tests-unwind-test-impl \
1528240bed918722944c9985bc0cca89eb44c4f6c91Christopher Ferris
153153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferrisinclude $(BUILD_STATIC_LIBRARY)
154153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferris
155153d92765bb693541abf49a2a1d31335e2c90348Christopher Ferris# -----------------------------------------------------------------------------
1567be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Test library for the unit tests.
1577be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
158124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott Hughes
159124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott Hughes# Build no-elf-hash-table-library.so to test dlopen(3) on a library that
160a43e906221a3e9c70a66118a8692cd46f77e144eElliott Hughes# only has a GNU-style hash table. MIPS doesn't support GNU hash style.
161a43e906221a3e9c70a66118a8692cd46f77e144eElliott Hughesifneq ($(TARGET_ARCH),mips)
162124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott Hughesinclude $(CLEAR_VARS)
163124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott HughesLOCAL_MODULE := no-elf-hash-table-library
164124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
165124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott HughesLOCAL_SRC_FILES := empty.cpp
166124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott HughesLOCAL_LDFLAGS := -Wl,--hash-style=gnu
167124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott Hughesinclude $(BUILD_SHARED_LIBRARY)
168a43e906221a3e9c70a66118a8692cd46f77e144eElliott Hughesendif
169124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott Hughes
1707be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
1717be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Unit tests built against glibc.
1727be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# -----------------------------------------------------------------------------
173124fae9eabd7a25d80dfa8c3b56bed0f0fba16f1Elliott Hughes
1747be369d4c60e9df2316fdb6c73181a40020abef2Elliott Hughes# Build tests for the host (with glibc).
175cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# Note that this will build against glibc, so it's not useful for testing
176cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# bionic's implementation, but it does let you use glibc as a reference
177cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughes# implementation for testing the tests themselves.
17838bfa21695b19c21784d2074de30d5d102f08972Elliott Hughesifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
179cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughesinclude $(CLEAR_VARS)
1807b841f3b4ad121dd64f639c1858b42defffd60bdJoe OnoratoLOCAL_MODULE := bionic-unit-tests-glibc
1812e8f4345dfe16e64d7a3c26f688f17f2b48b2dd1Elliott HughesLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
182ad88a0863110798cef5169dcf917e18b967a7cf6Elliott HughesLOCAL_CFLAGS += $(test_c_flags)
1839b06cc3c1b2c4e2b08582f3fc9393a05aa589766Jeff HaoLOCAL_LDFLAGS += -lpthread -ldl -lrt
184acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaoLOCAL_LDFLAGS += $(test_dynamic_ldflags)
185acf5aa76a56f101607aeb8e6d1fbea24d0d4f68cjeffhaoLOCAL_SRC_FILES := $(test_src_files) $(test_dynamic_src_files)
186c45087bffa528c0809f0df2e0a3708eba7018b33Sergey MelnikovLOCAL_STATIC_LIBRARIES += bionic-unit-tests-unwind-test-impl-host
187cc213f871bf4c5329eb5eb7a80a0ce9d4a880af8Elliott Hughesinclude $(BUILD_HOST_NATIVE_TEST)
18838bfa21695b19c21784d2074de30d5d102f08972Elliott Hughesendif
1895ac9eee1d3291a0d203a125849b4636a11c0d124Benoit Goby
19016d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich# -----------------------------------------------------------------------------
191f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin# Run the unit tests built against x86 bionic on an x86 host.
192f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin# -----------------------------------------------------------------------------
193f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin
194f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupinifeq ($(HOST_OS)-$(HOST_ARCH),linux-x86)
195f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupinifeq ($(TARGET_ARCH),x86)
196f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin# gtest needs EXTERNAL_STORAGE for death test output.
197f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin# bionic itself should always work relative to ANDROID_DATA or ANDROID_ROOT.
198f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin# We create /data/local/tmp to be as much like the regular target environment
199f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin# as possible.
200f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupinbionic-unit-tests-run-on-host: bionic-unit-tests $(TARGET_OUT_EXECUTABLES)/linker
201f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin	mkdir -p $(TARGET_OUT_DATA)/local/tmp
202f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin	cp $(TARGET_OUT_EXECUTABLES)/linker /system/bin
203e60c4f0a6cb5836caa8d0de299cc83fe4b13744cElliott Hughes	cp $(TARGET_OUT_EXECUTABLES)/sh /system/bin
204f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin	ANDROID_DATA=$(TARGET_OUT_DATA) \
205f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin	ANDROID_ROOT=$(TARGET_OUT) \
206f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin	EXTERNAL_STORAGE=$(TARGET_OUT_DATA)/local/tmp \
207f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin	LD_LIBRARY_PATH=$(TARGET_OUT_SHARED_LIBRARIES) \
208f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin		$(TARGET_OUT_DATA_NATIVE_TESTS)/bionic-unit-tests/bionic-unit-tests
209f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupinendif
210f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupinendif
211f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin
212f22fb68751c4040f3335cb0bd2d47f87c3ee1aacPavel Chupin# -----------------------------------------------------------------------------
2135bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich# FORTIFY_SOURCE tests
21416d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich# -----------------------------------------------------------------------------
2155bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich
2165bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichfortify_c_includes = \
2175bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich    bionic \
2185bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich    bionic/libstdc++/include \
2195bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich    external/stlport/stlport \
2205bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich    external/gtest/include
2215bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichfortify_test_files = fortify_test.cpp
22216d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich
22316d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich# -Wno-error=unused-parameter needed as
22416d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich# external/stlport/stlport/stl/_threads.c (included from
22516d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich# external/gtest/include/gtest/gtest.h) does not compile cleanly under
22616d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich# clang. TODO: fix this.
2275bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichfortify_c_flags = $(test_c_flags) -Wno-error=unused-parameter
2285bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich
2295bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichinclude $(CLEAR_VARS)
2305bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_SRC_FILES := $(fortify_test_files)
2315bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_MODULE := fortify1-tests-gcc
2325bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DTEST_NAME=Fortify1_Gcc
2335bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
2345bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_C_INCLUDES += $(fortify_c_includes)
2355bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichinclude $(BUILD_STATIC_LIBRARY)
2365bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevich
2375bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichinclude $(CLEAR_VARS)
2385bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_SRC_FILES := $(fortify_test_files)
2395bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_MODULE := fortify2-tests-gcc
2405bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -DTEST_NAME=Fortify2_Gcc
2415bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
2425bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_C_INCLUDES += $(fortify_c_includes)
2435bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichinclude $(BUILD_STATIC_LIBRARY)
24416d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich
2455bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichinclude $(CLEAR_VARS)
2465bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_SRC_FILES := $(fortify_test_files)
2475bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_MODULE := fortify1-tests-clang
2485bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_CLANG := true
2495bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=1 -DTEST_NAME=Fortify1_Clang
25016d1af167f8e36a9aa4a07ae77034ad519b00463Nick KralevichLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
2515bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_C_INCLUDES += $(fortify_c_includes)
2525bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichinclude $(BUILD_STATIC_LIBRARY)
25316d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich
2545bcf39842e8c4b02ae557a2765a84e724f762469Nick Kralevichinclude $(CLEAR_VARS)
2555bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_SRC_FILES := $(fortify_test_files)
2565bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_MODULE := fortify2-tests-clang
2575bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_CLANG := true
2585bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_CFLAGS += $(fortify_c_flags) -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2 -DTEST_NAME=Fortify2_Clang
2595bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_ADDITIONAL_DEPENDENCIES := $(LOCAL_PATH)/Android.mk
2605bcf39842e8c4b02ae557a2765a84e724f762469Nick KralevichLOCAL_C_INCLUDES += $(fortify_c_includes)
26116d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevichinclude $(BUILD_STATIC_LIBRARY)
26216d1af167f8e36a9aa4a07ae77034ad519b00463Nick Kralevich
2635ac9eee1d3291a0d203a125849b4636a11c0d124Benoit Gobyendif # !BUILD_TINY_ANDROID
264