3dd45cab17
Original change: https://android-review.googlesource.com/c/platform/build/+/1844555
Bug: 201591516
Change-Id: Id124e6eb6d5c8c0ec31aca6b5878577519125c30
(cherry picked from commit 10218c724d
)
122 lines
5.2 KiB
Makefile
122 lines
5.2 KiB
Makefile
# Copyright (C) 2015 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.
|
|
|
|
# Package up a compatibility test suite in a zip file.
|
|
#
|
|
# Input variables:
|
|
# test_suite_name: the name of this test suite eg. cts
|
|
# test_suite_tradefed: the name of this test suite's tradefed wrapper
|
|
# test_suite_dynamic_config: the path to this test suite's dynamic configuration file
|
|
# test_suite_readme: the path to a README file for this test suite
|
|
# test_suite_prebuilt_tools: the set of prebuilt tools to be included directly
|
|
# in the 'tools' subdirectory of the test suite.
|
|
# test_suite_tools: the set of tools for this test suite
|
|
#
|
|
# Output variables:
|
|
# compatibility_zip: the path to the output zip file.
|
|
|
|
test_suite_subdir := android-$(test_suite_name)
|
|
out_dir := $(HOST_OUT)/$(test_suite_name)/$(test_suite_subdir)
|
|
test_artifacts := $(COMPATIBILITY.$(test_suite_name).FILES)
|
|
test_tools := $(HOST_OUT_JAVA_LIBRARIES)/tradefed.jar \
|
|
$(HOST_OUT_JAVA_LIBRARIES)/tradefed-no-fwk.jar \
|
|
$(HOST_OUT_JAVA_LIBRARIES)/tradefed-test-framework.jar \
|
|
$(HOST_OUT_JAVA_LIBRARIES)/loganalysis.jar \
|
|
$(HOST_OUT_JAVA_LIBRARIES)/compatibility-host-util.jar \
|
|
$(HOST_OUT_JAVA_LIBRARIES)/compatibility-tradefed.jar \
|
|
$(HOST_OUT_JAVA_LIBRARIES)/$(test_suite_tradefed).jar \
|
|
$(HOST_OUT_JAVA_LIBRARIES)/$(test_suite_tradefed)-tests.jar \
|
|
$(HOST_OUT_EXECUTABLES)/$(test_suite_tradefed) \
|
|
$(test_suite_readme)
|
|
|
|
test_tools += $(test_suite_tools)
|
|
|
|
# The JDK to package into the test suite zip file. Always package the linux JDK.
|
|
test_suite_jdk_dir := $(ANDROID_JAVA_HOME)/../linux-x86
|
|
test_suite_jdk := $(call intermediates-dir-for,PACKAGING,$(test_suite_name)_jdk,HOST)/jdk.zip
|
|
$(test_suite_jdk): PRIVATE_JDK_DIR := $(test_suite_jdk_dir)
|
|
$(test_suite_jdk): PRIVATE_SUBDIR := $(test_suite_subdir)
|
|
$(test_suite_jdk): $(shell find $(test_suite_jdk_dir) -type f | sort)
|
|
$(test_suite_jdk): $(SOONG_ZIP)
|
|
$(SOONG_ZIP) -o $@ -P $(PRIVATE_SUBDIR)/jdk -C $(PRIVATE_JDK_DIR) -D $(PRIVATE_JDK_DIR)
|
|
|
|
# Include host shared libraries
|
|
host_shared_libs := $(call copy-many-files, $(COMPATIBILITY.$(test_suite_name).HOST_SHARED_LIBRARY.FILES))
|
|
|
|
compatibility_zip_deps := \
|
|
$(test_artifacts) \
|
|
$(test_tools) \
|
|
$(test_suite_prebuilt_tools) \
|
|
$(test_suite_dynamic_config) \
|
|
$(test_suite_jdk) \
|
|
$(MERGE_ZIPS) \
|
|
$(SOONG_ZIP) \
|
|
$(host_shared_libs) \
|
|
|
|
compatibility_zip_resources := $(out_dir)/tools $(out_dir)/testcases $(out_dir)/lib $(out_dir)/lib64
|
|
|
|
# Test Suite NOTICE files
|
|
test_suite_notice_txt := $(out_dir)/NOTICE.txt
|
|
test_suite_notice_html := $(out_dir)/NOTICE.html
|
|
|
|
$(eval $(call combine-notice-files, html, \
|
|
$(test_suite_notice_txt), \
|
|
$(test_suite_notice_html), \
|
|
"Notices for files contained in the test suites filesystem image in this directory:", \
|
|
$(HOST_OUT_NOTICE_FILES) $(TARGET_OUT_NOTICE_FILES), \
|
|
$(compatibility_zip_deps)))
|
|
|
|
compatibility_zip_deps += $(test_suite_notice_txt)
|
|
compatibility_zip_resources += $(test_suite_notice_txt)
|
|
|
|
compatibility_tests_list_zip := $(out_dir)-tests_list.zip
|
|
|
|
compatibility_zip := $(out_dir).zip
|
|
$(compatibility_zip) : .KATI_IMPLICIT_OUTPUTS := $(compatibility_tests_list_zip)
|
|
$(compatibility_zip): PRIVATE_OUT_DIR := $(out_dir)
|
|
$(compatibility_zip): PRIVATE_TOOLS := $(test_tools) $(test_suite_prebuilt_tools)
|
|
$(compatibility_zip): PRIVATE_SUITE_NAME := $(test_suite_name)
|
|
$(compatibility_zip): PRIVATE_DYNAMIC_CONFIG := $(test_suite_dynamic_config)
|
|
$(compatibility_zip): PRIVATE_RESOURCES := $(compatibility_zip_resources)
|
|
$(compatibility_zip): PRIVATE_JDK := $(test_suite_jdk)
|
|
$(compatibility_zip): PRIVATE_tests_list := $(out_dir)-tests_list
|
|
$(compatibility_zip): PRIVATE_tests_list_zip := $(compatibility_tests_list_zip)
|
|
$(compatibility_zip): $(compatibility_zip_deps) | $(ADB) $(ACP)
|
|
# Make dir structure
|
|
mkdir -p $(PRIVATE_OUT_DIR)/tools $(PRIVATE_OUT_DIR)/testcases
|
|
rm -f $@ $@.tmp $@.jdk
|
|
echo $(BUILD_NUMBER_FROM_FILE) > $(PRIVATE_OUT_DIR)/tools/version.txt
|
|
# Copy tools
|
|
cp $(PRIVATE_TOOLS) $(PRIVATE_OUT_DIR)/tools
|
|
$(if $(PRIVATE_DYNAMIC_CONFIG),$(hide) cp $(PRIVATE_DYNAMIC_CONFIG) $(PRIVATE_OUT_DIR)/testcases/$(PRIVATE_SUITE_NAME).dynamic)
|
|
find $(PRIVATE_RESOURCES) | sort >$@.list
|
|
$(SOONG_ZIP) -d -o $@.tmp -C $(dir $@) -l $@.list
|
|
$(MERGE_ZIPS) $@ $@.tmp $(PRIVATE_JDK)
|
|
rm -f $@.tmp
|
|
# Build a list of tests
|
|
rm -f $(PRIVATE_tests_list)
|
|
$(hide) grep -e .*\\.config$$ $@.list | sed s%$(PRIVATE_OUT_DIR)/testcases/%%g > $(PRIVATE_tests_list)
|
|
$(SOONG_ZIP) -d -o $(PRIVATE_tests_list_zip) -j -f $(PRIVATE_tests_list)
|
|
rm -f $(PRIVATE_tests_list)
|
|
|
|
# Reset all input variables
|
|
test_suite_name :=
|
|
test_suite_tradefed :=
|
|
test_suite_dynamic_config :=
|
|
test_suite_readme :=
|
|
test_suite_prebuilt_tools :=
|
|
test_suite_tools :=
|
|
test_suite_jdk :=
|
|
test_suite_jdk_dir :=
|
|
host_shared_libs :=
|