Searched refs:testProperties (Results 1 – 9 of 9) sorted by relevance
/build/soong/python/ |
D | test.go | 97 testProperties TestProperties member 105 p.AddProperties(&p.testProperties) 108 if p.isTestHost() && p.testProperties.Test_options.Unit_test == nil { 109 p.testProperties.Test_options.Unit_test = proptools.BoolPtr(true) 123 if len(p.testProperties.Data_device_bins_both) < 1 { 137 p.testProperties.Data_device_bins_both..., 158 for _, metadata := range p.testProperties.Test_options.Metadata { 162 runner := proptools.StringDefault(p.testProperties.Test_options.Runner, "tradefed") 166 if !android.InList("mobly", p.testProperties.Test_options.Tags) { 167 p.testProperties.Test_options.Tags = append(p.testProperties.Test_options.Tags, "mobly") [all …]
|
/build/soong/sh/ |
D | sh_binary.go | 175 testProperties TestProperties member 370 …ctx.AddFarVariationDependencies(ctx.Target().Variations(), shTestDataBinsTag, s.testProperties.Dat… 372 shTestDataLibsTag, s.testProperties.Data_libs...) 375 …ctx.AddFarVariationDependencies(deviceVariations, shTestDataDeviceBinsTag, s.testProperties.Data_d… 377 shTestDataDeviceLibsTag, s.testProperties.Data_device_libs...) 380 ctx.AddVariationDependencies(javaDataVariation, shTestJavaDataTag, s.testProperties.Java_data...) 383 if len(s.testProperties.Data_device_bins) > 0 { 386 if len(s.testProperties.Data_device_libs) > 0 { 389 if len(s.testProperties.Java_data) > 0 { 408 expandedData := android.PathsForModuleSrc(ctx, s.testProperties.Data) [all …]
|
/build/soong/java/ |
D | ravenwood.go | 63 testProperties testProperties member 74 module.AddProperties(&module.testProperties, &module.ravenwoodTestProperties) 79 module.testProperties.Test_suites = []string{ 83 module.testProperties.Test_options.Unit_test = proptools.BoolPtr(false) 96 return r.testProperties.Test_suites 124 TestConfigProp: r.testProperties.Test_config, 125 TestConfigTemplateProp: r.testProperties.Test_config_template, 126 TestSuites: r.testProperties.Test_suites, 127 AutoGenConfig: r.testProperties.Auto_gen_config,
|
D | robolectric.go | 83 testProperties testProperties member 103 return r.testProperties.Test_suites 144 TestConfigProp: r.testProperties.Test_config, 145 TestConfigTemplateProp: r.testProperties.Test_config_template, 146 TestSuites: r.testProperties.Test_suites, 147 AutoGenConfig: r.testProperties.Auto_gen_config, 151 r.data = android.PathsForModuleSrc(ctx, r.testProperties.Data) 265 for _, data := range android.PathsForModuleSrc(ctx, r.testProperties.Data) { 404 &module.testProperties) 409 module.testProperties.Test_suites = []string{"robolectric-tests"}
|
D | fuzz.go | 61 module.AddProperties(&module.testProperties) 88 j.testProperties.Jni_libs = append(j.testProperties.Jni_libs, artDeps...) 91 if len(j.testProperties.Jni_libs) > 0 { 101 ctx.AddFarVariationDependencies(sharedLibVariations, jniLibTag, j.testProperties.Jni_libs...)
|
D | androidmk.go | 168 …testSuiteComponent(entries, j.testProperties.Test_suites, Bool(j.testProperties.Per_testcase_direc… 174 if !BoolDefault(j.testProperties.Auto_gen_config, true) { 177 entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", j.testProperties.Test_mainline_modules...) 179 j.testProperties.Test_options.CommonTestOptions.SetAndroidMkEntries(entries) 465 …testSuiteComponent(entries, a.testProperties.Test_suites, Bool(a.testProperties.Per_testcase_direc… 471 entries.AddStrings("LOCAL_TEST_MAINLINE_MODULES", a.testProperties.Test_mainline_modules...) 699 …testSuiteComponent(entries, a.testProperties.Test_suites, Bool(a.testProperties.Per_testcase_direc…
|
D | java.go | 1233 type testProperties struct { struct 1317 testProperties testProperties member 1447 if len(j.testProperties.Jni_libs) > 0 { 1450 ctx.AddFarVariationDependencies(sharedLibVariations, jniLibTag, j.testProperties.Jni_libs...) 1505 TestSuites: j.testProperties.Test_suites, 1508 IsUnitTest: Bool(j.testProperties.Test_options.Unit_test), 1518 if j.testProperties.Test_options.Unit_test == nil && ctx.Host() { 1520 …defaultUnitTest := !inList("tradefed", j.properties.Libs) && !inList("cts", j.testProperties.Test_… 1521 j.testProperties.Test_options.Unit_test = proptools.BoolPtr(defaultUnitTest) 1524 TestConfigProp: j.testProperties.Test_config, [all …]
|
D | app.go | 1326 testProperties testProperties member 1342 return android.PrefixInList(a.testProperties.Test_suites, searchPrefix) 1370 for _, module := range a.testProperties.Test_mainline_modules { 1374 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config, 1375 …a.testProperties.Test_config_template, a.manifestPath, a.testProperties.Test_suites, a.testPropert… 1377 …a.extraTestConfigs = android.PathsForModuleSrc(ctx, a.testProperties.Test_options.Extra_test_confi… 1378 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data) 1385 TestSuites: a.testProperties.Test_suites, 1388 IsUnitTest: Bool(a.testProperties.Test_options.Unit_test), 1466 &module.testProperties)
|
D | app_import.go | 655 testProperties struct { member 674 a.data = android.PathsForModuleSrc(ctx, a.testProperties.Data) 687 module.AddProperties(&module.testProperties)
|