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 | .PHONY: general-tests |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 16 | |
| 17 | general-tests-zip := $(PRODUCT_OUT)/general-tests.zip |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 18 | # Create an artifact to include a list of test config files in general-tests. |
| 19 | general-tests-list-zip := $(PRODUCT_OUT)/general-tests_list.zip |
| 20 | $(general-tests-zip) : .KATI_IMPLICIT_OUTPUTS := $(general-tests-list-zip) |
| 21 | $(general-tests-zip) : PRIVATE_general_tests_list := $(PRODUCT_OUT)/general-tests_list |
| 22 | |
| 23 | $(general-tests-zip) : $(COMPATIBILITY.general-tests.FILES) $(SOONG_ZIP) |
Colin Cross | f3a4340 | 2017-07-31 17:16:49 -0700 | [diff] [blame] | 24 | echo $(sort $(COMPATIBILITY.general-tests.FILES)) | tr " " "\n" > $@.list |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 25 | grep $(HOST_OUT_TESTCASES) $@.list > $@-host.list || true |
| 26 | grep $(TARGET_OUT_TESTCASES) $@.list > $@-target.list || true |
Simran Basi | 8a431d9 | 2017-04-04 12:47:19 -0700 | [diff] [blame] | 27 | $(hide) $(SOONG_ZIP) -d -o $@ -P host -C $(HOST_OUT) -l $@-host.list -P target -C $(PRODUCT_OUT) -l $@-target.list |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 28 | rm -f $(PRIVATE_general_tests_list) |
| 29 | $(hide) grep -e .*.config$$ $@-host.list | sed s%$(HOST_OUT)%host%g > $(PRIVATE_general_tests_list) |
| 30 | $(hide) grep -e .*.config$$ $@-target.list | sed s%$(PRODUCT_OUT)%target%g >> $(PRIVATE_general_tests_list) |
| 31 | $(hide) $(SOONG_ZIP) -d -o $(general-tests-list-zip) -C $(dir $@) -f $(PRIVATE_general_tests_list) |
| 32 | rm -f $@.list $@-host.list $@-target.list $(PRIVATE_general_tests_list) |
Simran Basi | c8f21f6 | 2017-03-14 15:40:33 -0700 | [diff] [blame] | 33 | |
| 34 | general-tests: $(general-tests-zip) |
Dan Shi | 8f12631 | 2017-12-05 11:26:36 -0800 | [diff] [blame] | 35 | $(call dist-for-goals, general-tests, $(general-tests-zip) $(general-tests-list-zip)) |