blob: da64cab40dfffbd15baee342c1d4cf5618cce1e5 [file] [log] [blame]
Dan Shi679cc2a2017-11-30 13:20:43 -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#
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
Dan Shi639c6cc2018-04-13 14:39:53 -070015# Create an artifact to include TEST_MAPPING files in source tree. Also include
16# a file (out/disabled-presubmit-tests) containing the tests that should be
17# skipped in presubmit check.
Dan Shi679cc2a2017-11-30 13:20:43 -080018
19.PHONY: test_mapping
20
21intermediates := $(call intermediates-dir-for,PACKAGING,test_mapping)
22test_mappings_zip := $(intermediates)/test_mappings.zip
23test_mapping_list := $(OUT_DIR)/.module_paths/TEST_MAPPING.list
24test_mappings := $(file <$(test_mapping_list))
25$(test_mappings_zip) : PRIVATE_test_mappings := $(subst $(newline),\n,$(test_mappings))
Dan Shi639c6cc2018-04-13 14:39:53 -070026$(test_mappings_zip) : PRIVATE_all_disabled_presubmit_tests := $(ALL_DISABLED_PRESUBMIT_TESTS)
Dan Shi679cc2a2017-11-30 13:20:43 -080027
28$(test_mappings_zip) : $(test_mappings) $(SOONG_ZIP)
Dan Shi639c6cc2018-04-13 14:39:53 -070029 @echo "Building artifact to include TEST_MAPPING files and tests to skip in presubmit check."
30 rm -rf $@ $(dir $@)/disabled-presubmit-tests
31 echo $(sort $(PRIVATE_all_disabled_presubmit_tests)) | tr " " "\n" > $(dir $@)/disabled-presubmit-tests
Dan Shi679cc2a2017-11-30 13:20:43 -080032 echo -e "$(PRIVATE_test_mappings)" > $@.list
Dan Shi639c6cc2018-04-13 14:39:53 -070033 $(SOONG_ZIP) -o $@ -C . -l $@.list -C $(dir $@) -f $(dir $@)/disabled-presubmit-tests
34 rm -f $@.list $(dir $@)/disabled-presubmit-tests
Dan Shi679cc2a2017-11-30 13:20:43 -080035
36test_mapping : $(test_mappings_zip)
37
38$(call dist-for-goals, dist_files test_mapping,$(test_mappings_zip))