Home
last modified time | relevance | path

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

/build/soong/android/
Dtest_config.go79 func modifyTestConfigToSupportArchMutator(testConfig Config) {
80 config := testConfig.config
132 testConfig := TestConfig(buildDir, env, bp, fs)
133 modifyTestConfigToSupportArchMutator(testConfig)
134 return testConfig
Dpackaging_test.go99 type testConfig struct { struct
105 func runPackagingTest(t *testing.T, config testConfig, bp string, expected []string) { argument
139 config := testConfig{
266 config := testConfig{
391 config := testConfig{
420 config := testConfig{
582 config := testConfig{
644 config := testConfig{
Dpaths_test.go255 testConfig := pathTestConfig("")
806 tc.ctx.baseModuleContext.config = testConfig
822 testConfig := pathTestConfig("")
823 testConfig.TestProductVariables.BoardUsesRecoveryAsBoot = proptools.BoolPtr(true)
824 testConfig.TestProductVariables.BoardMoveRecoveryResourcesToVendorBoot = proptools.BoolPtr(true)
871 tc.ctx.baseModuleContext.config = testConfig
887 testConfig := pathTestConfig("")
898 ctx.baseModuleContext.config = testConfig
1099 testConfig := pathTestConfig(test.buildDir)
1100 ctx := &configErrorWrapper{config: testConfig}
[all …]
/build/soong/ui/build/
Dsandbox_linux_test.go80 func testConfig() Config { func
89 return Command(testContext(), testConfig(), "sandbox_test", "path/to/nsjail")
/build/soong/java/
Dravenwood.go64 testConfig android.Path member
123 r.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
164 installConfig := ctx.InstallFile(installPath, ctx.ModuleName()+".config", r.testConfig)
190 if r.testConfig != nil {
191 entries.SetPath("LOCAL_FULL_TEST_CONFIG", r.testConfig)
Drobolectric.go95 testConfig android.Path member
143 r.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
262 installedConfig := ctx.InstallFile(installPath, ctx.ModuleName()+".config", r.testConfig)
338 if r.testConfig != nil {
339 entries.SetPath("LOCAL_FULL_TEST_CONFIG", r.testConfig)
Dapp.go1328 testConfig android.Path member
1374 testConfig := tradefed.AutoGenInstrumentationTestConfig(ctx, a.testProperties.Test_config,
1376 a.testConfig = a.FixTestConfig(ctx, testConfig)
1383 TestConfig: a.testConfig,
1397 func (a *AndroidTest) FixTestConfig(ctx android.ModuleContext, testConfig android.Path) android.Pat…
1398 if testConfig == nil {
1404 command := rule.Command().BuiltTool("test_config_fixer").Input(testConfig).Output(fixedConfig)
1428 return testConfig
Dandroidmk.go169 if j.testConfig != nil {
170 entries.SetPath("LOCAL_FULL_TEST_CONFIG", j.testConfig)
466 if a.testConfig != nil {
467 entries.SetPath("LOCAL_FULL_TEST_CONFIG", a.testConfig)
Djava.go1319 testConfig android.Path member
1341 testConfig android.Path member
1503 TestConfig: j.testConfig,
1523 j.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
1580 j.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
1628 p.TestConfig = test.testConfig
1642 testConfig := p.TestConfig
1643 if testConfig != nil {
1645 builder.CopyToSnapshot(testConfig, snapshotRelativeTestConfigPath)
/build/soong/python/
Dtest.go98 testConfig android.Path member
173 p.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
219 if p.testConfig != nil {
220 entries.SetString("LOCAL_FULL_TEST_CONFIG", p.testConfig.String())
/build/soong/rust/
Dbenchmark.go49 testConfig android.Path member
115 benchmark.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
Dandroidmk.go108 if test.testConfig != nil {
109 entries.SetString("LOCAL_FULL_TEST_CONFIG", test.testConfig.String())
126 if benchmark.testConfig != nil {
127 entries.SetString("LOCAL_FULL_TEST_CONFIG", benchmark.testConfig.String())
Dtest.go77 testConfig android.Path member
133 test.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
/build/soong/cc/
Dtest.go341 testConfig android.Path member
377 if test.testConfig != nil {
378 if _, ok := test.testConfig.(android.WritablePath); ok {
381 moduleInfoJSON.TestConfig = append(moduleInfoJSON.TestConfig, test.testConfig.String())
442 test.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
638 testConfig android.Path member
666 benchmark.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
697 if benchmark.testConfig != nil {
698 if _, ok := benchmark.testConfig.(android.WritablePath); ok {
701 moduleInfoJSON.TestConfig = []string{benchmark.testConfig.String()}
Dandroidmk.go339 if benchmark.testConfig != nil {
340 entries.SetString("LOCAL_FULL_TEST_CONFIG", benchmark.testConfig.String())
358 if test.testConfig != nil {
359 entries.SetString("LOCAL_FULL_TEST_CONFIG", test.testConfig.String())
/build/soong/tradefed_modules/
Dtest_module_config.go32 testConfig android.OutputPath member
218 entries.SetPath("LOCAL_FULL_TEST_CONFIG", m.testConfig)
369 m.testConfig = m.fixTestConfig(ctx, m.provider.TestConfig)
/build/soong/sh/
Dsh_binary.go180 testConfig android.Path member
450 s.testConfig = tradefed.AutoGenTestConfig(ctx, tradefed.AutoGenTestConfigOptions{
518 if s.testConfig != nil {
519 entries.SetPath("LOCAL_FULL_TEST_CONFIG", s.testConfig)
/build/soong/sdk/
Dtesting.go275 …var runSnapshotTestWithCheckers = func(t *testing.T, testConfig snapshotTest, extraPreparer androi…
277 customization := snapshotBuildInfo.snapshotTestCustomization(testConfig)