Home
last modified time | relevance | path

Searched refs:testConfig (Results 1 – 15 of 15) sorted by relevance

/build/soong/python/
Dtest.go64 testConfig android.Path member
74 test.testConfig = tradefed.AutoGenPythonBinaryHostTestConfig(ctx, test.testProperties.Test_config,
Dandroidmk.go64 if p.testConfig != nil {
65 entries.SetString("LOCAL_FULL_TEST_CONFIG", p.testConfig.String())
/build/soong/rust/
Dbenchmark.go49 testConfig android.Path member
114 benchmark.testConfig = tradefed.AutoGenRustBenchmarkConfig(ctx,
Dandroidmk.go104 if test.testConfig != nil {
105 entries.SetString("LOCAL_FULL_TEST_CONFIG", test.testConfig.String())
120 if benchmark.testConfig != nil {
121 entries.SetString("LOCAL_FULL_TEST_CONFIG", benchmark.testConfig.String())
Dtest.go70 testConfig android.Path member
112 test.testConfig = tradefed.AutoGenRustTestConfig(ctx,
/build/soong/android/
Dpaths_test.go227 testConfig := pathTestConfig("")
714 tc.ctx.baseModuleContext.config = testConfig
730 testConfig := pathTestConfig("")
731 testConfig.TestProductVariables.BoardUsesRecoveryAsBoot = proptools.BoolPtr(true)
732 testConfig.TestProductVariables.BoardMoveRecoveryResourcesToVendorBoot = proptools.BoolPtr(true)
775 tc.ctx.baseModuleContext.config = testConfig
791 testConfig := pathTestConfig("")
800 ctx.baseModuleContext.config = testConfig
1001 testConfig := pathTestConfig(test.buildDir)
1002 ctx := &configErrorWrapper{config: testConfig}
[all …]
Dconfig.go307 func modifyTestConfigToSupportArchMutator(testConfig Config) {
308 config := testConfig.config
338 testConfig := TestConfig(buildDir, env, bp, fs)
339 modifyTestConfigToSupportArchMutator(testConfig)
340 return testConfig
/build/soong/sh/
Dsh_binary.go169 testConfig android.Path member
367 s.testConfig = tradefed.AutoGenShellTestConfig(ctx, s.testProperties.Test_config,
422 if s.testConfig != nil {
423 entries.SetPath("LOCAL_FULL_TEST_CONFIG", s.testConfig)
/build/soong/cc/
Dtest.go331 testConfig android.Path member
442 test.testConfig = tradefed.AutoGenNativeTestConfig(ctx, test.Properties.Test_config,
550 testConfig android.Path member
581 …benchmark.testConfig = tradefed.AutoGenNativeBenchmarkTestConfig(ctx, benchmark.Properties.Test_co…
Dandroidmk.go359 if benchmark.testConfig != nil {
360 entries.SetString("LOCAL_FULL_TEST_CONFIG", benchmark.testConfig.String())
384 if test.testConfig != nil {
385 entries.SetString("LOCAL_FULL_TEST_CONFIG", test.testConfig.String())
/build/soong/java/
Drobolectric.go84 testConfig android.Path member
118 r.testConfig = tradefed.AutoGenRobolectricTestConfig(ctx, r.testProperties.Test_config,
196 installedConfig := ctx.InstallFile(installPath, ctx.ModuleName()+".config", r.testConfig)
Djava.go758 testConfig android.Path member
780 testConfig android.Path member
811 …j.testConfig = tradefed.AutoGenJavaTestConfig(ctx, j.testProperties.Test_config, j.testProperties.…
853 j.testConfig = tradefed.AutoGenJavaTestConfig(ctx, j.prebuiltTestProperties.Test_config, nil,
896 p.TestConfig = test.testConfig
910 testConfig := p.TestConfig
911 if testConfig != nil {
913 builder.CopyToSnapshot(testConfig, snapshotRelativeTestConfigPath)
Dapp.go953 testConfig android.Path member
980 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
982 a.testConfig = a.FixTestConfig(ctx, testConfig)
987 func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Pat…
988 if testConfig == nil {
994 command := rule.Command().BuiltTool("test_config_fixer").Input(testConfig).Output(fixedConfig)
1012 return testConfig
Dandroidmk.go157 if j.testConfig != nil {
158 entries.SetPath("LOCAL_FULL_TEST_CONFIG", j.testConfig)
447 if a.testConfig != nil {
448 entries.SetPath("LOCAL_FULL_TEST_CONFIG", a.testConfig)
/build/soong/sdk/
Dtesting.go262 …var runSnapshotTestWithCheckers = func(t *testing.T, testConfig snapshotTest, extraPreparer androi…
264 customization := snapshotBuildInfo.snapshotTestCustomization(testConfig)