Home
last modified time | relevance | path

Searched refs:testBinary (Results 1 – 10 of 10) sorted by relevance

/build/soong/rust/
Dtest_test.go110 testBinary := testingModule.Module().(*Module).compiler.(*testDecorator)
115 if len(testBinary.dataPaths()) != 2 {
116 t.Fatalf("expected exactly two test data files. test data files: [%v]", testBinary.dataPaths())
120 dataLibraryPath := testBinary.dataPaths()[0].SrcPath.String()
121 dataBinaryPath := testBinary.dataPaths()[1].SrcPath.String()
170 testBinary := module.(*Module).compiler.(*testDecorator)
175 if len(testBinary.dataPaths()) != 3 {
176 t.Fatalf("expected exactly two test data files. test data files: [%v]", testBinary.dataPaths())
Dbinary.go37 testBinary() bool methodSpec
186 func (binary *binaryDecorator) testBinary() bool { func
Dtest.go295 func (test *testDecorator) testBinary() bool { func
Dsanitize.go124 if binary, ok := ctx.RustModule().compiler.(binaryInterface); ok && binary.testBinary() {
/build/soong/cc/
Dtest.go195 func (test *testBinary) dataPaths() []android.DataPath {
199 func (test *testBinary) testBinary() bool { func
287 type testBinary struct { struct
297 func (test *testBinary) linkerProps() []interface{} { argument
303 func (test *testBinary) linkerDeps(ctx DepsContext, deps Deps) Deps { argument
311 func (test *testBinary) linkerFlags(ctx ModuleContext, flags Flags) Flags { argument
323 func (test *testBinary) moduleInfoJSON(ctx ModuleContext, moduleInfoJSON *android.ModuleInfoJSON) { argument
351 func (test *testBinary) testSuiteInfo(ctx ModuleContext) { argument
355 func (test *testBinary) installerProps() []interface{} { argument
359 func (test *testBinary) install(ctx ModuleContext, file android.Path) { argument
[all …]
Dcc_test.go315 testBinary := testingModule.Module().(*Module).linker.(*testBinary)
321 if len(testBinary.dataPaths()) != 1 {
322 t.Errorf("expected exactly one test data file. test data files: [%v]", testBinary.dataPaths())
327 testBinaryPath := testBinary.dataPaths()[0].SrcPath.String()
368 testBinary := module.(*Module).linker.(*testBinary)
373 if len(testBinary.dataPaths()) != 2 {
374 t.Fatalf("expected exactly one test data file. test data files: [%v]", testBinary.dataPaths())
1417 testBinary := module.(*Module).linker.(*testBinary)
1422 if len(testBinary.dataPaths()) != 1 {
1423 t.Errorf("expected exactly one test data file. test data files: [%v]", testBinary.dataPaths())
Dlto.go93 } else if ctx.testBinary() || ctx.testLibrary() {
Dcc.go674 testBinary() bool methodSpec
1716 func (ctx *moduleContextImpl) testBinary() bool { func
1717 return ctx.mod.testBinary()
2385 case *testBinary:
3986 func (c *Module) testBinary() bool { func
3988 testBinary() bool
3990 return test.testBinary()
4310 if c.testBinary() {
Dandroidmk.go367 func (test *testBinary) prepareAndroidMKProviderInfo(config android.Config, ctx AndroidMkContext, e…
Dsanitize.go482 if ctx.testBinary() {