diff options
author | Yuexi Ma <yuexima@google.com> | 2021-03-04 13:47:56 -0800 |
---|---|---|
committer | Yuexi Ma <yuexima@google.com> | 2021-03-16 15:57:59 -0700 |
commit | 627263fecedf59eb725b669f2d98439d3c3b75bf (patch) | |
tree | f74fb9f3c21c4e75cde33f2d02afa441ab2ce8e3 /java/java.go | |
parent | 632f080f8830e2ded22d2e65fdf69cbbe6df40d8 (diff) |
Export a few utility methods
Add a few utility methods to support generating TradeFed test plan in C-Suite
Test: go test .
Change-Id: I86a505068b5d5aa0f5a37b3e3a2465839a7480ef
Diffstat (limited to 'java/java.go')
-rw-r--r-- | java/java.go | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/java/java.go b/java/java.go index 59ec94d5b..8ad908416 100644 --- a/java/java.go +++ b/java/java.go @@ -2451,6 +2451,10 @@ func (j *TestHost) DepsMutator(ctx android.BottomUpMutatorContext) { j.deps(ctx) } +func (j *TestHost) AddExtraResource(p android.Path) { + j.extraResources = append(j.extraResources, p) +} + func (j *Test) GenerateAndroidBuildActions(ctx android.ModuleContext) { j.testConfig = tradefed.AutoGenJavaTestConfig(ctx, j.testProperties.Test_config, j.testProperties.Test_config_template, j.testProperties.Test_suites, j.testProperties.Auto_gen_config, j.testProperties.Test_options.Unit_test) @@ -2609,12 +2613,22 @@ func TestHostFactory() android.Module { module.AddProperties(&module.testProperties) module.AddProperties(&module.testHostProperties) - module.Module.properties.Installable = proptools.BoolPtr(true) + InitTestHost( + module, + proptools.BoolPtr(true), + nil, + nil) InitJavaModuleMultiTargets(module, android.HostSupported) return module } +func InitTestHost(th *TestHost, installable *bool, testSuites []string, autoGenConfig *bool) { + th.properties.Installable = installable + th.testProperties.Auto_gen_config = autoGenConfig + th.testProperties.Test_suites = testSuites +} + // // Java Binaries (.jar file plus wrapper script) // |