blob: f071c7c7d15d5af5727eb12961ebc619676b62f5 [file] [log] [blame]
Simran Basi9c295b42017-02-16 11:49:18 -08001# 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 Shi8f126312017-12-05 11:26:36 -08009# Unless required by applicable law or agreed to in writing, software
Simran Basi9c295b42017-02-16 11:49:18 -080010# 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 Basic8f21f62017-03-14 15:40:33 -070017
18device-tests-zip := $(PRODUCT_OUT)/device-tests.zip
Dan Shi8f126312017-12-05 11:26:36 -080019# Create an artifact to include a list of test config files in device-tests.
20device-tests-list-zip := $(PRODUCT_OUT)/device-tests_list.zip
Dan Shi51b789e2019-05-22 15:15:20 -070021# Create an artifact to include all test config files in device-tests.
22device-tests-configs-zip := $(PRODUCT_OUT)/device-tests_configs.zip
Dan Shi6fe5bf02018-10-25 23:21:38 -070023my_host_shared_lib_for_device_tests := $(call copy-many-files,$(COMPATIBILITY.device-tests.HOST_SHARED_LIBRARY.FILES))
Dan Shi51b789e2019-05-22 15:15:20 -070024$(device-tests-zip) : .KATI_IMPLICIT_OUTPUTS := $(device-tests-list-zip) $(device-tests-configs-zip)
Dan Shi8f126312017-12-05 11:26:36 -080025$(device-tests-zip) : PRIVATE_device_tests_list := $(PRODUCT_OUT)/device-tests_list
Dan Shi6fe5bf02018-10-25 23:21:38 -070026$(device-tests-zip) : PRIVATE_HOST_SHARED_LIBS := $(my_host_shared_lib_for_device_tests)
27$(device-tests-zip) : $(COMPATIBILITY.device-tests.FILES) $(my_host_shared_lib_for_device_tests) $(SOONG_ZIP)
Colin Crossf3a43402017-07-31 17:16:49 -070028 echo $(sort $(COMPATIBILITY.device-tests.FILES)) | tr " " "\n" > $@.list
Simran Basic8f21f62017-03-14 15:40:33 -070029 grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true
Dan Shi51b789e2019-05-22 15:15:20 -070030 grep -e .*\\.config$$ $@-host.list > $@-host-test-configs.list || true
Dan Shi6fe5bf02018-10-25 23:21:38 -070031 $(hide) for shared_lib in $(PRIVATE_HOST_SHARED_LIBS); do \
32 echo $$shared_lib >> $@-host.list; \
33 done
Simran Basic8f21f62017-03-14 15:40:33 -070034 grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true
Dan Shi51b789e2019-05-22 15:15:20 -070035 grep -e .*\\.config$$ $@-target.list > $@-target-test-configs.list || true
Simran Basi8a431d92017-04-04 12:47:19 -070036 $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list
Dan Shi51b789e2019-05-22 15:15:20 -070037 $(hide) $(SOONG_ZIP) -d -o $(device-tests-configs-zip) \
38 -P host -C $(HOST_OUT) -l $@-host-test-configs.list \
39 -P target -C $(PRODUCT_OUT) -l $@-target-test-configs.list
Dan Shi8f126312017-12-05 11:26:36 -080040 rm -f $(PRIVATE_device_tests_list)
Dan Shi51b789e2019-05-22 15:15:20 -070041 $(hide) grep -e .*\\.config$$ $@-host.list | sed s%$(HOST_OUT)%host%g > $(PRIVATE_device_tests_list)
42 $(hide) grep -e .*\\.config$$ $@-target.list | sed s%$(PRODUCT_OUT)%target%g >> $(PRIVATE_device_tests_list)
Dan Shi8f126312017-12-05 11:26:36 -080043 $(hide) $(SOONG_ZIP) -d -o $(device-tests-list-zip) -C $(dir $@) -f $(PRIVATE_device_tests_list)
Dan Shi51b789e2019-05-22 15:15:20 -070044 rm -f $@.list $@-host.list $@-target.list $@-host-test-configs.list $@-target-test-configs.list \
45 $(PRIVATE_device_tests_list)
Simran Basic8f21f62017-03-14 15:40:33 -070046
47device-tests: $(device-tests-zip)
Dan Shi51b789e2019-05-22 15:15:20 -070048$(call dist-for-goals, device-tests, $(device-tests-zip) $(device-tests-list-zip) $(device-tests-configs-zip))
Simran Basi65850da2017-04-05 20:39:18 +000049
50tests: device-tests