blob: cdc90c04e3cb728068cd32ef177a4316da2aa6ec [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: [
"inspect/offer.shard.cml",
"syslog/client.shard.cml",
],
children: [
{
name: "test-driver",
url: "fuchsia-pkg://fuchsia.com/remote-control-lib-tests#meta/test_driver.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.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",
},
],
}