Lines Matching refs:test
55 func (test *testDecorator) nativeCoverage() bool {
69 test := &testDecorator{
75 module.compiler = test
76 module.AddProperties(&test.Properties)
77 return module, test
80 func (test *testDecorator) compilerProps() []interface{} {
81 return append(test.binaryDecorator.compilerProps(), &test.Properties)
84 func (test *testDecorator) install(ctx ModuleContext, file android.Path) {
85 test.testConfig = tradefed.AutoGenRustTestConfig(ctx,
86 test.Properties.Test_config,
87 test.Properties.Test_config_template,
88 test.Properties.Test_suites,
90 test.Properties.Auto_gen_config)
93 if !Bool(test.Properties.No_named_install_directory) {
94 test.baseCompiler.relative = ctx.ModuleName()
95 } else if String(test.baseCompiler.Properties.Relative_install_path) == "" {
99 test.binaryDecorator.install(ctx, file)
102 func (test *testDecorator) compilerFlags(ctx ModuleContext, flags Flags) Flags {
103 flags = test.binaryDecorator.compilerFlags(ctx, flags)
108 func (test *testDecorator) autoDep() autoDep {