Revert "Allow adding extra tradefed options in the Android.bp file"

This reverts commit 8ec823cba1.

Reason for revert: DroidMonitor: Potential culprit for Bug b/262965953 - verifying through ABTD before revert submission. This is part of the standard investigation process, and does not mean your CL will be reverted.

Change-Id: I236cc36981d8b30527ca286632727f8ca267e969
This commit is contained in:
Tahsin Loqman
2022-12-19 16:27:25 +00:00
committed by Gerrit Code Review
parent 8ec823cba1
commit 77dc7d0839
10 changed files with 177 additions and 232 deletions

View File

@@ -459,16 +459,8 @@ func (test *testBinary) install(ctx ModuleContext, file android.Path) {
configs = append(configs, tradefed.Object{"module_controller", "com.android.tradefed.testtype.suite.module.MinApiLevelModuleController", options})
}
test.testConfig = tradefed.NewMaybeAutoGenTestConfigBuilder(ctx).
SetTestConfigProp(test.Properties.Test_config).
SetTestTemplateConfigProp(test.Properties.Test_config_template).
SetTestSuites(test.testDecorator.InstallerProperties.Test_suites).
SetConfig(configs).
SetAutoGenConfig(test.Properties.Auto_gen_config).
SetTestInstallBase(testInstallBase).
SetDeviceTemplate("${NativeTestConfigTemplate}").
SetHostTemplate("${NativeHostTestConfigTemplate}").
Build()
test.testConfig = tradefed.AutoGenNativeTestConfig(ctx, test.Properties.Test_config,
test.Properties.Test_config_template, test.testDecorator.InstallerProperties.Test_suites, configs, test.Properties.Auto_gen_config, testInstallBase)
test.extraTestConfigs = android.PathsForModuleSrc(ctx, test.Properties.Test_options.Extra_test_configs)
@@ -624,15 +616,8 @@ func (benchmark *benchmarkDecorator) install(ctx ModuleContext, file android.Pat
if Bool(benchmark.Properties.Require_root) {
configs = append(configs, tradefed.Object{"target_preparer", "com.android.tradefed.targetprep.RootTargetPreparer", nil})
}
benchmark.testConfig = tradefed.NewMaybeAutoGenTestConfigBuilder(ctx).
SetTestConfigProp(benchmark.Properties.Test_config).
SetTestTemplateConfigProp(benchmark.Properties.Test_config_template).
SetTestSuites(benchmark.Properties.Test_suites).
SetConfig(configs).
SetAutoGenConfig(benchmark.Properties.Auto_gen_config).
SetDeviceTemplate("${NativeBenchmarkTestConfigTemplate}").
SetHostTemplate("${NativeBenchmarkTestConfigTemplate}").
Build()
benchmark.testConfig = tradefed.AutoGenNativeBenchmarkTestConfig(ctx, benchmark.Properties.Test_config,
benchmark.Properties.Test_config_template, benchmark.Properties.Test_suites, configs, benchmark.Properties.Auto_gen_config)
benchmark.binaryDecorator.baseInstaller.dir = filepath.Join("benchmarktest", ctx.ModuleName())
benchmark.binaryDecorator.baseInstaller.dir64 = filepath.Join("benchmarktest64", ctx.ModuleName())