Home
last modified time | relevance | path

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

/build/soong/rust/
Dtest_test.go110 testBinary := module.(*Module).compiler.(*testDecorator)
118 if len(testBinary.dataPaths()) != 2 {
119 t.Fatalf("expected exactly two test data files. test data files: [%s]", testBinary.dataPaths())
123 dataLibraryPath := testBinary.dataPaths()[0].SrcPath.String()
124 dataBinaryPath := testBinary.dataPaths()[1].SrcPath.String()
172 testBinary := module.(*Module).compiler.(*testDecorator)
180 if len(testBinary.dataPaths()) != 3 {
181 t.Fatalf("expected exactly two test data files. test data files: [%s]", testBinary.dataPaths())
Dbinary.go37 testBinary() bool methodSpec
186 func (binary *binaryDecorator) testBinary() bool { func
Dtest.go242 func (test *testDecorator) testBinary() bool { func
Dsanitize.go118 if binary, ok := ctx.RustModule().compiler.(binaryInterface); ok && binary.testBinary() {
/build/soong/cc/
Dtest.go180 func (test *testBinary) testPerSrc() bool {
184 func (test *testBinary) srcs() []string {
188 func (test *testBinary) dataPaths() []android.DataPath {
192 func (test *testBinary) isAllTestsVariation() bool {
197 func (test *testBinary) setSrc(name, src string) {
202 func (test *testBinary) unsetSrc() {
207 var _ testPerSrc = (*testBinary)(nil)
259 func (test *testDecorator) testBinary() bool { func
335 type testBinary struct { struct
345 func (test *testBinary) linkerProps() []interface{} { argument
[all …]
Dcc_test.go696 testBinary := module.(*Module).linker.(*testBinary)
706 if len(testBinary.dataPaths()) != 1 {
707 t.Errorf("expected exactly one test data file. test data files: [%s]", testBinary.dataPaths())
712 testBinaryPath := testBinary.dataPaths()[0].SrcPath.String()
754 testBinary := module.(*Module).linker.(*testBinary)
762 if len(testBinary.dataPaths()) != 2 {
763 t.Fatalf("expected exactly one test data file. test data files: [%s]", testBinary.dataPaths())
3160 testBinary := module.(*Module).linker.(*testBinary)
3168 if len(testBinary.dataPaths()) != 1 {
3169 t.Errorf("expected exactly one test data file. test data files: [%s]", testBinary.dataPaths())
Dcc.go480 testBinary() bool methodSpec
1448 func (ctx *moduleContextImpl) testBinary() bool { func
1449 return ctx.mod.testBinary()
3229 func (c *Module) testBinary() bool { func
3231 testBinary() bool
3233 return test.testBinary()
Dandroidmk.go388 func (test *testBinary) AndroidMkEntries(ctx AndroidMkContext, entries *android.AndroidMkEntries) {
Dsanitize.go322 if ctx.testBinary() {