| # |
| # Copyright (C) 2010 The Android Open Source Project |
| # |
| # Licensed under the Apache License, Version 2.0 (the "License"); |
| # you may not use this file except in compliance with the License. |
| # You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| # |
| |
| # Makefile for producing CTS coverage reports. |
| # Run "make cts-test-coverage" in the $ANDROID_BUILD_TOP directory. |
| |
| include cts/CtsTestCaseList.mk |
| |
| CTS_API_COVERAGE_DEPENDENCIES := cts-api-coverage dexdeps $(ACP) |
| |
| .PHONY: cts-test-coverage |
| cts-test-coverage: $(CTS_COVERAGE_TEST_CASE_LIST) $(CTS_API_COVERAGE_DEPENDENCIES) |
| $(call generate-coverage-report,"CTS Tests API Coverage Report",\ |
| $(CTS_COVERAGE_TEST_CASE_LIST),xml,$(HOST_OUT)/cts/test-coverage,api-coverage.xml) |
| |
| .PHONY: cts-verifier-coverage |
| cts-verifier-coverage: CtsVerifier $(CTS_API_COVERAGE_DEPENDENCIES) |
| $(call generate-coverage-report,"CTS Verifier API Coverage Report",\ |
| CtsVerifier,xml,$(HOST_OUT)/cts/verifier-coverage,api-coverage.xml) |
| |
| # Arguments; |
| # 1 - Name of the report printed out on the screen |
| # 2 - Name of APK packages that will be scanned to generate the report |
| # 3 - Format of the report |
| # 4 - Output directory to put the report |
| # 5 - Output file name of the report |
| define generate-coverage-report |
| $(hide) rm -rf $(4) |
| $(hide) mkdir -p $(4) |
| $(hide) $(ACP) cts/tools/cts-api-coverage/res/* $(4) |
| |
| $(foreach testcase,$(2),$(eval $(call add-testcase-apk,$(testcase)))) |
| $(hide) cts-api-coverage -f $(3) -o $(4)/$(5) $(TEST_APKS) |
| |
| @echo $(1): file://$(ANDROID_BUILD_TOP)/$(4)/$(5) |
| endef |
| |
| define add-testcase-apk |
| TEST_APKS += $(call intermediates-dir-for,APPS,$(1))/package.apk |
| endef |