summaryrefslogtreecommitdiff
path: root/python/androidmk.go
diff options
context:
space:
mode:
author Colin Cross <ccross@android.com> 2020-06-09 15:09:22 -0700
committer Colin Cross <ccross@android.com> 2020-06-10 22:48:16 -0700
commita6384821f9dbcd515e34923f2d8cfd175e69aac4 (patch)
tree00df9516adaba0e8780ce1358044357391c3b52f /python/androidmk.go
parentbf488e10e80594460f9be217ffac0057bf2f748e (diff)
Fix using generated test configs for sh_test, python_test and rust_test modules
Annotate the test config properties with android:"path", and always use LOCAL_FULL_TEST_CONFIG to pass the path to Make. Bug: 157621988 Test: manual Change-Id: I1c020e642f83d994d63c9e9cb56e686086d5acaa
Diffstat (limited to 'python/androidmk.go')
-rw-r--r--python/androidmk.go12
1 files changed, 3 insertions, 9 deletions
diff --git a/python/androidmk.go b/python/androidmk.go
index d293d52a1..247b80dc0 100644
--- a/python/androidmk.go
+++ b/python/androidmk.go
@@ -66,15 +66,9 @@ func (p *testDecorator) AndroidMk(base *Module, ret *android.AndroidMkData) {
fmt.Fprintln(w, "LOCAL_COMPATIBILITY_SUITE :=",
strings.Join(p.binaryDecorator.binaryProperties.Test_suites, " "))
}
- // If the test config has an explicit config specified use it.
- if p.testProperties.Test_config != nil {
- fmt.Fprintln(w, "LOCAL_TEST_CONFIG :=",
- *p.testProperties.Test_config)
- } else {
- if p.testConfig != nil {
- fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=",
- p.testConfig.String())
- }
+ if p.testConfig != nil {
+ fmt.Fprintln(w, "LOCAL_FULL_TEST_CONFIG :=",
+ p.testConfig.String())
}
if !BoolDefault(p.binaryProperties.Auto_gen_config, true) {