| { |
| include: [ "syslog/client.shard.cml" ], |
| children: [ |
| { |
| name: "test-driver", |
| url: "fuchsia-pkg://fuchsia.com/remote-control-lib-tests#meta/test_driver.cm", |
| }, |
| { |
| name: "sys-launcher", |
| url: "fuchsia-pkg://fuchsia.com/remote-control-lib-tests#meta/mock_sys_launcher.cm", |
| }, |
| { |
| name: "netstack", |
| url: "fuchsia-pkg://fuchsia.com/remote-control-lib-tests#meta/netstack.cm", |
| }, |
| ], |
| offer: [ |
| { |
| storage: "tmp", |
| from: "parent", |
| to: "#test-driver", |
| }, |
| { |
| storage: "tmp", |
| from: "parent", |
| as: "cache", |
| to: "#netstack", |
| }, |
| { |
| protocol: "fuchsia.sys.Launcher", |
| from: "#sys-launcher", |
| to: "#test-driver", |
| }, |
| { |
| protocol: [ |
| "fuchsia.net.routes.State", |
| "fuchsia.posix.socket.Provider", |
| ], |
| from: "#netstack", |
| to: "#test-driver", |
| }, |
| { |
| protocol: [ "fuchsia.logger.LogSink" ], |
| from: "parent", |
| to: [ |
| "#netstack", |
| "#test-driver", |
| ], |
| }, |
| ], |
| expose: [ |
| { |
| protocol: "fuchsia.test.Suite", |
| from: "#test-driver", |
| }, |
| ], |
| } |