1# Copyright (C) 2017 The Android Open Source Project 2# 3# Licensed under the Apache License, Version 2.0 (the "License"); 4# you may not use this file except in compliance with the License. 5# You may obtain a copy of the License at 6# 7# http://www.apache.org/licenses/LICENSE-2.0 8# 9# Unless required by applicable law or agreed to in writing, software 10# distributed under the License is distributed on an "AS IS" BASIS, 11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12# See the License for the specific language governing permissions and 13# limitations under the License. 14 15 16.PHONY: device-tests 17.PHONY: device-tests-files-list 18 19device-tests-zip := $(PRODUCT_OUT)/device-tests.zip 20# Create an artifact to include a list of test config files in device-tests. 21device-tests-list-zip := $(PRODUCT_OUT)/device-tests_list.zip 22# Create an artifact to include all test config files in device-tests. 23device-tests-configs-zip := $(PRODUCT_OUT)/device-tests_configs.zip 24my_host_shared_lib_for_device_tests := $(call copy-many-files,$(COMPATIBILITY.device-tests.HOST_SHARED_LIBRARY.FILES)) 25device_tests_files_list := $(PRODUCT_OUT)/device-tests_files 26 27$(device-tests-zip) : .KATI_IMPLICIT_OUTPUTS := $(device-tests-list-zip) $(device-tests-configs-zip) 28$(device-tests-zip) : PRIVATE_device_tests_list := $(PRODUCT_OUT)/device-tests_list 29$(device-tests-zip) : PRIVATE_HOST_SHARED_LIBS := $(my_host_shared_lib_for_device_tests) 30$(device-tests-zip) : $(COMPATIBILITY.device-tests.FILES) $(COMPATIBILITY.device-tests.SOONG_INSTALLED_COMPATIBILITY_SUPPORT_FILES) $(my_host_shared_lib_for_device_tests) $(SOONG_ZIP) 31 echo $(sort $(COMPATIBILITY.device-tests.FILES) $(COMPATIBILITY.device-tests.SOONG_INSTALLED_COMPATIBILITY_SUPPORT_FILES)) | tr " " "\n" > $@.list 32 grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true 33 grep -e .*\\.config$$ $@-host.list > $@-host-test-configs.list || true 34 $(hide) for shared_lib in $(PRIVATE_HOST_SHARED_LIBS); do \ 35 echo $$shared_lib >> $@-host.list; \ 36 done 37 grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true 38 grep -e .*\\.config$$ $@-target.list > $@-target-test-configs.list || true 39 $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list -sha256 40 $(hide) $(SOONG_ZIP) -d -o $(device-tests-configs-zip) \ 41 -P host -C $(HOST_OUT) -l $@-host-test-configs.list \ 42 -P target -C $(PRODUCT_OUT) -l $@-target-test-configs.list 43 rm -f $(PRIVATE_device_tests_list) 44 $(hide) grep -e .*\\.config$$ $@-host.list | sed s%$(HOST_OUT)%host%g > $(PRIVATE_device_tests_list) 45 $(hide) grep -e .*\\.config$$ $@-target.list | sed s%$(PRODUCT_OUT)%target%g >> $(PRIVATE_device_tests_list) 46 $(hide) $(SOONG_ZIP) -d -o $(device-tests-list-zip) -C $(dir $@) -f $(PRIVATE_device_tests_list) 47 rm -f $@.list $@-host.list $@-target.list $@-host-test-configs.list $@-target-test-configs.list \ 48 $(PRIVATE_device_tests_list) 49 50$(device_tests_files_list) : PRIVATE_HOST_SHARED_LIBS := $(my_host_shared_lib_for_device_tests) 51$(device_tests_files_list) : 52 echo $(sort $(COMPATIBILITY.device-tests.FILES) $(COMPATIBILITY.device-tests.SOONG_INSTALLED_COMPATIBILITY_SUPPORT_FILES)) | tr " " "\n" > $@.full_list 53 grep $(HOST_OUT_TESTCASES) $@.full_list > $@ || true 54 grep $(TARGET_OUT_TESTCASES) $@.full_list >> $@ || true 55 56device-tests: $(device-tests-zip) 57device-tests-files-list: $(device_tests_files_list) 58 59$(call dist-for-goals, device-tests, $(device-tests-zip) $(device-tests-list-zip) $(device-tests-configs-zip)) 60 61$(call declare-1p-container,$(device-tests-zip),) 62$(call declare-container-license-deps,$(device-tests-zip),$(COMPATIBILITY.device-tests.FILES) $(my_host_shared_lib_for_device_tests),$(PRODUCT_OUT)/:/) 63 64tests: device-tests 65