Simran Basi | 9c295b4 | 2017-02-16 11:49:18 -0800 | [diff] [blame] | 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 | # |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 9 | # Unless required by applicable law or agreed to in writing, software |
Simran Basi | 9c295b4 | 2017-02-16 11:49:18 -0800 | [diff] [blame] | 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 |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 17 | |
| 18 | device-tests-zip := $(PRODUCT_OUT)/device-tests.zip |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 19 | # Create an artifact to include a list of test config files in device-tests. |
| 20 | device-tests-list-zip := $(PRODUCT_OUT)/device-tests_list.zip |
Dan Shi | 51b789e | 2019-05-22 15:15:20 -0700 | [diff] [blame] | 21 | # Create an artifact to include all test config files in device-tests. |
| 22 | device-tests-configs-zip := $(PRODUCT_OUT)/device-tests_configs.zip |
Dan Shi | 6fe5bf0 | 2018-10-25 23:21:38 -0700 | [diff] [blame] | 23 | my_host_shared_lib_for_device_tests := $(call copy-many-files,$(COMPATIBILITY.device-tests.HOST_SHARED_LIBRARY.FILES)) |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 24 | device_tests_host_shared_libs_zip := $(PRODUCT_OUT)/device-tests_host-shared-libs.zip |
| 25 | |
| 26 | $(device-tests-zip) : .KATI_IMPLICIT_OUTPUTS := $(device-tests-list-zip) $(device-tests-configs-zip) $(device_tests_host_shared_libs_zip) |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 27 | $(device-tests-zip) : PRIVATE_device_tests_list := $(PRODUCT_OUT)/device-tests_list |
Dan Shi | 6fe5bf0 | 2018-10-25 23:21:38 -0700 | [diff] [blame] | 28 | $(device-tests-zip) : PRIVATE_HOST_SHARED_LIBS := $(my_host_shared_lib_for_device_tests) |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 29 | $(device-tests-zip) : PRIVATE_device_host_shared_libs_zip := $(device_tests_host_shared_libs_zip) |
Dan Shi | 6fe5bf0 | 2018-10-25 23:21:38 -0700 | [diff] [blame] | 30 | $(device-tests-zip) : $(COMPATIBILITY.device-tests.FILES) $(my_host_shared_lib_for_device_tests) $(SOONG_ZIP) |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 31 | rm -f $@-shared-libs.list |
Colin Cross | f3a4340 | 2017-07-31 17:16:49 -0700 | [diff] [blame] | 32 | echo $(sort $(COMPATIBILITY.device-tests.FILES)) | tr " " "\n" > $@.list |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 33 | grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true |
Dan Shi | 51b789e | 2019-05-22 15:15:20 -0700 | [diff] [blame] | 34 | grep -e .*\\.config$$ $@-host.list > $@-host-test-configs.list || true |
Dan Shi | 6fe5bf0 | 2018-10-25 23:21:38 -0700 | [diff] [blame] | 35 | $(hide) for shared_lib in $(PRIVATE_HOST_SHARED_LIBS); do \ |
| 36 | echo $$shared_lib >> $@-host.list; \ |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 37 | echo $$shared_lib >> $@-shared-libs.list; \ |
Dan Shi | 6fe5bf0 | 2018-10-25 23:21:38 -0700 | [diff] [blame] | 38 | done |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 39 | grep $(HOST_OUT_TESTCASES) $@-shared-libs.list > $@-host-shared-libs.list || true |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 40 | grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true |
Dan Shi | 51b789e | 2019-05-22 15:15:20 -0700 | [diff] [blame] | 41 | grep -e .*\\.config$$ $@-target.list > $@-target-test-configs.list || true |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 42 | $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list |
Dan Shi | 51b789e | 2019-05-22 15:15:20 -0700 | [diff] [blame] | 43 | $(hide) $(SOONG_ZIP) -d -o $(device-tests-configs-zip) \ |
| 44 | -P host -C $(HOST_OUT) -l $@-host-test-configs.list \ |
| 45 | -P target -C $(PRODUCT_OUT) -l $@-target-test-configs.list |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 46 | $(SOONG_ZIP) -d -o $(PRIVATE_device_host_shared_libs_zip) \ |
| 47 | -P host -C $(HOST_OUT) -l $@-host-shared-libs.list |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 48 | rm -f $(PRIVATE_device_tests_list) |
Dan Shi | 51b789e | 2019-05-22 15:15:20 -0700 | [diff] [blame] | 49 | $(hide) grep -e .*\\.config$$ $@-host.list | sed s%$(HOST_OUT)%host%g > $(PRIVATE_device_tests_list) |
| 50 | $(hide) grep -e .*\\.config$$ $@-target.list | sed s%$(PRODUCT_OUT)%target%g >> $(PRIVATE_device_tests_list) |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 51 | $(hide) $(SOONG_ZIP) -d -o $(device-tests-list-zip) -C $(dir $@) -f $(PRIVATE_device_tests_list) |
Dan Shi | 51b789e | 2019-05-22 15:15:20 -0700 | [diff] [blame] | 52 | rm -f $@.list $@-host.list $@-target.list $@-host-test-configs.list $@-target-test-configs.list \ |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 53 | $@-shared-libs.list $@-host-shared-libs.list $(PRIVATE_device_tests_list) |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 54 | |
| 55 | device-tests: $(device-tests-zip) |
easoncylee | 01e5ec2 | 2020-03-20 14:53:11 +0800 | [diff] [blame] | 56 | $(call dist-for-goals, device-tests, $(device-tests-zip) $(device-tests-list-zip) $(device-tests-configs-zip) $(device_tests_host_shared_libs_zip)) |
Simran Basi | 65850da | 2017-04-05 20:39:18 +0000 | [diff] [blame] | 57 | |
Bob Badour | 3a0f0c1 | 2022-04-05 10:43:45 -0700 | [diff] [blame] | 58 | $(call declare-1p-container,$(device-tests-zip),) |
| 59 | $(call declare-container-license-deps,$(device-tests-zip),$(COMPATIBILITY.device-tests.FILES) $(my_host_shared_lib_for_device_tests),$(PRODUCT_OUT)/:/) |
| 60 | |
Simran Basi | 65850da | 2017-04-05 20:39:18 +0000 | [diff] [blame] | 61 | tests: device-tests |