From 4f5297b4388175ea34f33ef431ae71dd000313ac Mon Sep 17 00:00:00 2001 From: Roland Levillain Date: Tue, 9 Jun 2020 12:44:06 +0100 Subject: Rename native code coverage paths product variables in Soong. Rename `CoveragePath` and `CoverageExcludePaths` as `NativeCoveragePath` and `NativeCoverageExcludePaths` (resp.). Also rename function `android.CoverageEnabledForPath` as `android.NativeCoverageEnabledForPath`. Test: m nothing Bug: 158212027 Change-Id: Id2c11a638e88088096420b537effa866d7667304 --- rust/rust_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rust/rust_test.go') diff --git a/rust/rust_test.go b/rust/rust_test.go index d658ee201..fe21e3a39 100644 --- a/rust/rust_test.go +++ b/rust/rust_test.go @@ -89,7 +89,7 @@ func testRustContext(t *testing.T, bp string, coverage bool) *android.TestContex if coverage { config.TestProductVariables.Native_coverage = proptools.BoolPtr(true) - config.TestProductVariables.CoveragePaths = []string{"*"} + config.TestProductVariables.NativeCoveragePaths = []string{"*"} } t.Helper() -- cgit v1.2.3-59-g8ed1b