blob: c97f85589ad605d0e9d6d4b6c9cb3ba98d5300d5 [file] [log] [blame]
{
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",
},
],
}