Lines Matching refs:test
47 func (test *testDecorator) bootstrapperProps() []interface{} {
48 return append(test.binaryDecorator.bootstrapperProps(), &test.testProperties)
51 func (test *testDecorator) install(ctx android.ModuleContext, file android.Path) {
52 test.testConfig = tradefed.AutoGenPythonBinaryHostTestConfig(ctx, test.testProperties.Test_config,
53 test.testProperties.Test_config_template, test.binaryDecorator.binaryProperties.Test_suites,
54 test.binaryDecorator.binaryProperties.Auto_gen_config)
56 test.binaryDecorator.pythonInstaller.dir = "nativetest"
57 test.binaryDecorator.pythonInstaller.dir64 = "nativetest64"
59 test.binaryDecorator.pythonInstaller.relative = ctx.ModuleName()
61 test.binaryDecorator.pythonInstaller.install(ctx, file)
69 test := &testDecorator{binaryDecorator: binary}
71 module.bootstrapper = test
72 module.installer = test