# # Copyright (C) 2011 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 rules are excluded from Mac, since we can not run ART tests there in the first place. ifneq ($(HOST_OS),darwin)
LOCAL_PATH := $(call my-dir)
################################################################################################### # Create module in testcases to hold all common data and tools needed for ART host tests.
# ART binary tools and libraries (automatic list of all art_cc_binary/art_cc_library modules).
my_files := $(ART_TESTCASES_CONTENT)
# Manually add system libraries that we need to run the host ART tools.
my_files += \
$(foreach lib, libbase libc++ libicu libicu_jni liblog libsigchain libunwindstack \
libziparchive libjavacore libandroidio libopenjdkd liblz4 liblzma, \
$(call intermediates-dir-for,SHARED_LIBRARIES,$(lib),HOST)/$(lib).so:lib64/$(lib).so \
$(call intermediates-dir-for,SHARED_LIBRARIES,$(lib),HOST,,2ND)/$(lib).so:lib/$(lib).so) \
$(foreach lib, libcrypto libz libicuuc libicui18n libexpat, \
$(call intermediates-dir-for,SHARED_LIBRARIES,$(lib),HOST)/$(lib).so:lib64/$(lib)-host.so \
$(call intermediates-dir-for,SHARED_LIBRARIES,$(lib),HOST,,2ND)/$(lib).so:lib/$(lib)-host.so)
# Add apex directories for art, conscrypt and i18n.
icu_data_file := $(firstword $(wildcard external/icu/icu4c/source/stubdata/icu*.dat))
my_files += $(foreach infix,_ _VDEX_,$(foreach suffix,$(HOST_ARCH) $(HOST_2ND_ARCH), \
$(DEXPREOPT_IMAGE$(infix)BUILT_INSTALLED_art_host_$(suffix)))) # `dexpreopt_bootjars.go` uses a single source of input regardless of variants, so we should use the # same source to avoid checksum mismatches on the oat files.
my_files += \
$(foreach jar,$(CORE_IMG_JARS),\
$(OUT_DIR)/soong/dexpreopt_$(TARGET_ARCH)/dex_artjars_input/$(jar).jar:apex/com.android.art/javalib/$(jar).jar) \
$(OUT_DIR)/soong/dexpreopt_$(TARGET_ARCH)/dex_artjars_input/conscrypt.jar:apex/com.android.conscrypt/javalib/conscrypt.jar\
$(OUT_DIR)/soong/dexpreopt_$(TARGET_ARCH)/dex_artjars_input/core-icu4j.jar:apex/com.android.i18n/javalib/core-icu4j.jar \
$(icu_data_file):com.android.i18n/etc/icu/$(notdir $(icu_data_file))
# Create phony module that will copy all the data files into testcases directory. # For now, this copies everything to "out/host/linux-x86/" subdirectory, since it # is hard-coded in many places. TODO: Refactor tests to remove the need for this. include $(CLEAR_VARS)
LOCAL_IS_HOST_MODULE := true
LOCAL_MODULE := art_common
LOCAL_LICENSE_KINDS := SPDX-license-identifier-Apache-2.0
LOCAL_LICENSE_CONDITIONS := notice
LOCAL_NOTICE_FILE := $(LOCAL_PATH)/../NOTICE
LOCAL_MODULE_TAGS := tests
LOCAL_MODULE_CLASS := NATIVE_TESTS
LOCAL_MODULE_SUFFIX := .txt
LOCAL_COMPATIBILITY_SUITE := art-host-tests
LOCAL_COMPATIBILITY_SUPPORT_FILES := $(ART_TESTCASES_PREBUILT_CONTENT) \
$(foreach f,$(my_files),$(call word-colon,1,$f):out/host/linux-x86/$(call word-colon,2,$f)) include $(BUILD_SYSTEM)/base_rules.mk
$(LOCAL_BUILT_MODULE):
@mkdir -p $(dir $@) echo"This directory contains common data and tools needed for ART host tests" > $@
my_files := include $(CLEAR_VARS) ###################################################################################################
# The path for which all the dex files are relative, not actually the current directory.
LOCAL_PATH := art/test
include art/build/Android.common_test.mk include art/build/Android.common_path.mk include art/build/Android.common_build.mk
# The elf writer test has dependencies on core.oat.
ART_GTEST_elf_writer_test_HOST_DEPS := $(HOST_CORE_IMAGE_DEFAULT_64) $(HOST_CORE_IMAGE_DEFAULT_32)
ART_GTEST_elf_writer_test_TARGET_DEPS := $(TARGET_CORE_IMAGE_DEFAULT_64) $(TARGET_CORE_IMAGE_DEFAULT_32)
# The two_runtimes_test test has dependencies on core.oat.
ART_GTEST_two_runtimes_test_HOST_DEPS := $(HOST_CORE_IMAGE_DEFAULT_64) $(HOST_CORE_IMAGE_DEFAULT_32)
ART_GTEST_two_runtimes_test_TARGET_DEPS := $(TARGET_CORE_IMAGE_DEFAULT_64) $(TARGET_CORE_IMAGE_DEFAULT_32)
# The transaction test has dependencies on core.oat.
ART_GTEST_transaction_test_HOST_DEPS := $(HOST_CORE_IMAGE_DEFAULT_64) $(HOST_CORE_IMAGE_DEFAULT_32)
ART_GTEST_transaction_test_TARGET_DEPS := $(TARGET_CORE_IMAGE_DEFAULT_64) $(TARGET_CORE_IMAGE_DEFAULT_32)
# The path for which all the source files are relative, not actually the current directory.
LOCAL_PATH := art
# b/258770641 Temporarily disable sigchain and dex2oat tests on ASAN configuration while we # investigate the failures. ifeq (,$(SANITIZE_HOST))
ART_TEST_MODULES_COMMON += art_sigchain_tests
ART_TEST_MODULES_COMMON += art_dex2oat_tests endif
ifneq (,$(wildcard frameworks/native/libs/binder)) # Only include the artd host tests if we have the binder sources available and # can build the libbinder_ndk dependency. It is not available as a prebuilt on # master-art.
ART_TEST_MODULES_HOST += art_artd_tests endif
# Define make rules for a host gtests. # $(1): gtest name - the name of the test we're building such as leb128_test. # $(2): path relative to $OUT to the test binary # $(3): 2ND_ or undefined - used to differentiate between the primary and secondary architecture. definedefine-art-gtest-rule-host
gtest_suffix := $(1)$$($(3)ART_PHONY_TEST_HOST_SUFFIX)
gtest_rule := test-art-host-gtest-$$(gtest_suffix)
gtest_build_rule := test-art-host-gtest-dependencies-$$(gtest_suffix)
gtest_output := $(call intermediates-dir-for,PACKAGING,art-host-gtest,HOST)/$$(gtest_suffix).xml
$$(call dist-for-goals,$$(gtest_rule),$$(gtest_output):gtest/$$(gtest_suffix))
$$(call declare-1p-target,$$(gtest_output))
gtest_exe := $(2) # Dependencies for all host gtests.
gtest_deps := $$(ART_HOST_DEX_DEPENDENCIES) \
$$(ART_TEST_HOST_GTEST_DEPENDENCIES) \
$$(HOST_OUT)/$$(I18N_APEX)/timestamp \
$$(HOST_BOOT_IMAGE_JARS) \
$$($(3)ART_HOST_OUT_SHARED_LIBRARIES)/libicu_jni$$(ART_HOST_SHLIB_EXTENSION) \
$$($(3)ART_HOST_OUT_SHARED_LIBRARIES)/libjavacore$$(ART_HOST_SHLIB_EXTENSION) \
$$($(3)ART_HOST_OUT_SHARED_LIBRARIES)/libopenjdkd$$(ART_HOST_SHLIB_EXTENSION) \
$$(gtest_exe) \
$$(ART_GTEST_$(1)_HOST_DEPS) \
$(foreach file,$(ART_GTEST_$(1)_DEX_DEPS),$(ART_TEST_HOST_GTEST_$(file)_DEX)) \
$(HOST_OUT_EXECUTABLES)/signal_dumper
# Note: The "host arch" Make variables defined in build/make/core/envsetup.mk # and art/build/Android.common.mk have different meanings: # # * In build/make/core/envsetup.mk: # * HOST_ARCH := x86_64 # * HOST_2ND_ARCH := x86 # # * In art/build/Android.common.mk: # * When `HOST_PREFER_32_BIT` is `true`: # * ART_HOST_ARCH := x86 # * 2ND_ART_HOST_ARCH := # * 2ND_HOST_ARCH := # * Otherwise: # * ART_HOST_ARCH := x86_64 # * 2ND_ART_HOST_ARCH := x86 # * 2ND_HOST_ARCH := x86
# Limit concurrent runs. Each test itself is already highly parallel (and thus memory hungry).
$$(gtest_output): .KATI_NINJA_POOL := highmem_pool
$$(gtest_output): NAME := $$(gtest_rule) ifeq (,$(SANITIZE_HOST))
$$(gtest_output): $$(gtest_exe) $$(gtest_deps)
$(hide) ($$(call ART_TEST_SKIP,$$(NAME)) && \
timeout --foreground -k 120s 2400s $(HOST_OUT_EXECUTABLES)/signal_dumper -s 15 \
$$< --gtest_output=xml:$$@ && \
$$(call ART_TEST_PASSED,$$(NAME))) || $$(call ART_TEST_FAILED,$$(NAME)) else # Note: envsetup currently exports ASAN_OPTIONS=detect_leaks=0 to suppress leak detection, as some # build tools (e.g., ninja) intentionally leak. We want leak checks when we run our tests, so # override ASAN_OPTIONS. b/37751350 # Note 2: Under sanitization, also capture the output, and run it through the stack tool on failure # (with the x86-64 ABI, as this allows symbolization of both x86 and x86-64). We don't do this in # general as it loses all the color output, and we have our own symbolization step when not running # under ASAN. # TODO(b/413709861): detect_odr_violation=1 added to work around ODR violation # in the runtime: It loads libopenjdk(d).so using dlopen, which depends on # libopenjdkjvm(d).so, which depends on libartbase(d).so and libart(d).so, which # are also statically linked into gtests.
$$(gtest_output): $$(gtest_exe) $$(gtest_deps)
$(hide) ($$(call ART_TEST_SKIP,$$(NAME)) && set -o pipefail && \
ASAN_OPTIONS=detect_leaks=1:detect_odr_violation=1 \
timeout --foreground -k 180s 3600s \
$(HOST_OUT_EXECUTABLES)/signal_dumper -s 15 \
$$< --gtest_output=xml:$$@ 2>&1 | tee $$<.tmp.out >&2 && \
{ $$(call ART_TEST_PASSED,$$(NAME)) ; rm $$<.tmp.out ; }) || \
( grep -q AddressSanitizer $$<.tmp.out && export ANDROID_BUILD_TOP=`pwd` && \
{ echo"ABI: 'x86_64'" | cat - $$<.tmp.out | development/scripts/stack | tail -n 3000 ; } ; \ rm $$<.tmp.out ; $$(call ART_TEST_FAILED,$$(NAME))) endif
# Add the additional dependencies for the specified test # $(1): test name define add-art-gtest-dependencies # Note that, both the primary and the secondary arches of the libs are built by depending # on the module name.
gtest_deps := \
$$(ART_GTEST_$(1)_TARGET_DEPS) \
$(foreach file,$(ART_GTEST_$(1)_DEX_DEPS),$(ART_TEST_TARGET_GTEST_$(file)_DEX)) \
# Clear locally defined variables.
gtest_deps := endef# add-art-gtest-dependencies
# $(1): file name # $(2): 2ND_ or undefined - used to differentiate between the primary and secondary architecture. definedefine-art-gtest-host
art_gtest_filename := $(1)
ifeq ($(ART_BUILD_TARGET),true)
$(foreach name,$(ART_TARGET_GTEST_NAMES), $(eval $(call add-art-gtest-dependencies,$(name),)))
ART_TEST_TARGET_GTEST_DEPENDENCIES += \
com.android.i18n \
libjavacore.com.android.art.testing \
libopenjdkd.com.android.art.testing \
com.android.art.testing \
com.android.conscrypt endif ifeq ($(ART_BUILD_HOST),true)
$(foreach file,$(ART_HOST_GTEST_FILES), $(eval $(calldefine-art-gtest-host,$(file),))) ifneq ($(HOST_PREFER_32_BIT),true)
$(foreach file,$(2ND_ART_HOST_GTEST_FILES), $(eval $(calldefine-art-gtest-host,$(file),2ND_))) endif # Rules to run the different architecture versions of the gtest.
$(foreach file,$(ART_HOST_GTEST_FILES), $(eval $(calldefine-art-gtest-host-both,$$(notdir $$(basename $$(file)))))) endif
# Define all the combinations of host/target and suffix such as: # test-art-host-gtest or test-art-host-gtest64 # $(1): host or target # $(2): HOST or TARGET # $(3): undefined, 32 or 64 definedefine-test-art-gtest-combination ifeq ($(1),host) ifneq ($(2),HOST)
$$(error argument mismatch $(1) and ($2)) endif else ifneq ($(1),target)
$$(error found $(1) expected host or target) endif ifneq ($(2),TARGET)
$$(error argument mismatch $(1) and ($2)) endif endif
# Define all the combinations of host/target and suffix such as: # test-art-host-gtest-dependencies or test-art-host-gtest-dependencies64 # $(1): host or target # $(2): HOST or TARGET # $(3): undefined, 32 or 64 definedefine-test-art-gtest-dependency-combination ifeq ($(1),host) ifneq ($(2),HOST)
$$(error argument mismatch $(1) and ($2)) endif else ifneq ($(1),target)
$$(error found $(1) expected host or target) endif ifneq ($(2),TARGET)
$$(error argument mismatch $(1) and ($2)) endif endif
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.