[DO NOT MERGE] Build MCTS on mainline branches

Ignore-AOSP-First: test for mainline internal branch
Bug: 323532076
Test: m mcts
Change-Id: Id43fad9082af479d5238ee8e143549637a070e4b
This commit is contained in:
Tongbo Liu
2024-02-22 17:38:13 +08:00
parent 7bfde65115
commit e1a52604d3
2 changed files with 42 additions and 3 deletions

32
core/tasks/mcts.mk Normal file
View File

@@ -0,0 +1,32 @@
# Copyright (C) 2024 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.
ifneq ($(wildcard test/mts/README.md),)
mcts_test_suites :=
mcts_test_suites += mcts
$(foreach module, $(mts_modules), $(eval mcts_test_suites += mcts-$(module)))
$(foreach suite, $(mcts_test_suites), \
$(eval test_suite_name := $(suite)) \
$(eval test_suite_tradefed := mts-tradefed) \
$(eval test_suite_readme := test/mts/README.md) \
$(eval include $(BUILD_SYSTEM)/tasks/tools/compatibility.mk) \
$(eval .PHONY: $(suite)) \
$(eval $(suite): $(compatibility_zip)) \
$(eval $(call dist-for-goals, $(suite), $(compatibility_zip))) \
)
endif

View File

@@ -26,7 +26,14 @@
# Output variables: # Output variables:
# compatibility_zip: the path to the output zip file. # compatibility_zip: the path to the output zip file.
test_suite_subdir := android-$(test_suite_name) special_mts_test_suites :=
special_mts_test_suites += mcts
ifneq ($(filter $(special_mts_test_suites),$(subst -, ,$(test_suite_name))),)
test_suite_subdir := android-mts
else
test_suite_subdir := android-$(test_suite_name)
endif
out_dir := $(HOST_OUT)/$(test_suite_name)/$(test_suite_subdir) out_dir := $(HOST_OUT)/$(test_suite_name)/$(test_suite_subdir)
test_artifacts := $(COMPATIBILITY.$(test_suite_name).FILES) test_artifacts := $(COMPATIBILITY.$(test_suite_name).FILES)
test_tools := $(HOST_OUT_JAVA_LIBRARIES)/tradefed.jar \ test_tools := $(HOST_OUT_JAVA_LIBRARIES)/tradefed.jar \
@@ -101,9 +108,9 @@ test_suite_notice_html := $(out_dir)/NOTICE.html
compatibility_zip_deps += $(test_suite_notice_txt) compatibility_zip_deps += $(test_suite_notice_txt)
compatibility_zip_resources += $(test_suite_notice_txt) compatibility_zip_resources += $(test_suite_notice_txt)
compatibility_tests_list_zip := $(out_dir)-tests_list.zip compatibility_tests_list_zip := $(HOST_OUT)/$(test_suite_name)/android-$(test_suite_name)-tests_list.zip
compatibility_zip := $(out_dir).zip compatibility_zip := $(HOST_OUT)/$(test_suite_name)/android-$(test_suite_name).zip
$(compatibility_zip) : .KATI_IMPLICIT_OUTPUTS := $(compatibility_tests_list_zip) $(compatibility_zip) : .KATI_IMPLICIT_OUTPUTS := $(compatibility_tests_list_zip)
$(compatibility_zip): PRIVATE_OUT_DIR := $(out_dir) $(compatibility_zip): PRIVATE_OUT_DIR := $(out_dir)
$(compatibility_zip): PRIVATE_TOOLS := $(test_tools) $(test_suite_prebuilt_tools) $(compatibility_zip): PRIVATE_TOOLS := $(test_tools) $(test_suite_prebuilt_tools)