blob: f9a4cf38f0e171e99c05d6771c9209d1b51be23d [file] [log] [blame]
// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
{
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",
},
],
}