7fe992c0cc
Host native tests have been getting installed into out/host/linux-x86/bin/..., but this pollutes the bin directory with a lot of poorly named tests. Also, to support 32-bit and 64-bit tests, we need to have different names with different suffixes. This causes problems when tests expect to be named something specific (like gtest). It's also convenient to store test data next to the test itself. So with this change, native tests will be installed in out/host/linux-x86/nativetest[64]/$(LOCAL_MODULE)/$(LOCAL_MODULE_STEM) just like target tests get installed into /data/nativetest[64]. Implement this using a new NATIVE_TESTS class, which is like EXECUTABLES, but sets up the install path differently, and configures the rpath to load shared libraries with the proper relative path. LOCAL_MODULE_RELATIVE_PATH can be used to control the directory name, it will default to $(LOCAL_MODULE). This way multiple related tests can be grouped together. Target native tests also use NATIVE_TESTS now, but nothing should change other than LOCAL_MODULE_RELATIVE_PATH can be used. Change-Id: I535e42b1a6b21c5b8d6a580aa2f944d2be35e27d
40 lines
1.3 KiB
Makefile
40 lines
1.3 KiB
Makefile
#######################################################
|
|
## Shared definitions for all target test compilations.
|
|
#######################################################
|
|
|
|
LOCAL_CFLAGS += -DGTEST_OS_LINUX_ANDROID -DGTEST_HAS_STD_STRING
|
|
|
|
ifndef LOCAL_SDK_VERSION
|
|
LOCAL_STATIC_LIBRARIES += libgtest_main libgtest
|
|
else
|
|
ifneq (,$(filter c++_%,$(LOCAL_NDK_STL_VARIANT)))
|
|
my_ndk_gtest_suffix := _libcxx
|
|
else ifneq ($(filter stlport_,$(LOCAL_NDK_STL_VARIANT)),)
|
|
my_ndk_gtest_suffix :=
|
|
else ifneq ($(filter gnustl_,$(LOCAL_NDK_STL_VARIANT)),)
|
|
my_ndk_gtest_suffix := _gnustl
|
|
else # system STL, use stlport
|
|
my_ndk_gtest_suffix :=
|
|
endif
|
|
LOCAL_STATIC_LIBRARIES += \
|
|
libgtest_main_ndk$(my_ndk_gtest_suffix) \
|
|
libgtest_ndk$(my_ndk_gtest_suffix)
|
|
endif
|
|
|
|
ifdef LOCAL_MODULE_PATH
|
|
$(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH when building test $(LOCAL_MODULE))
|
|
endif
|
|
|
|
ifdef LOCAL_MODULE_PATH_32
|
|
$(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_32 when building test $(LOCAL_MODULE))
|
|
endif
|
|
|
|
ifdef LOCAL_MODULE_PATH_64
|
|
$(error $(LOCAL_PATH): Do not set LOCAL_MODULE_PATH_64 when building test $(LOCAL_MODULE))
|
|
endif
|
|
|
|
ifeq ($(LOCAL_MODULE_CLASS),NATIVE_TESTS)
|
|
ifndef LOCAL_MODULE_RELATIVE_PATH
|
|
LOCAL_MODULE_RELATIVE_PATH := $(LOCAL_MODULE)
|
|
endif
|
|
endif
|