blob: fe5e122d7850581655c0ab491a9a7bec5fec8401 [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.
// use this shard to nest test manager in your test topology.
{
children: [
{
name: "test_manager",
url: "test_manager#meta/test_manager.cm",
},
],
offer: [
{
protocol: [
"fuchsia.component.resolution.Resolver",
"fuchsia.process.Launcher",
],
from: "parent",
to: "#test_manager",
},
{
dictionary: "diagnostics",
from: "parent",
to: "#test_manager",
},
{
event_stream: [
"capability_requested",
"destroyed",
"started",
"stopped",
],
from: "parent",
to: "#test_manager",
scope: "#test_manager",
},
{
storage: "tmp",
from: "parent",
to: "#test_manager",
},
{
storage: "data",
from: "parent",
to: "#test_manager",
},
{
directory: "boot",
from: "parent",
to: [ "#test_manager" ],
rights: [ "r*" ],
},
],
}