blob: 56b30f388b2b39801723c86676975f46a16c87f5 [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.inspect.InspectSink",
"fuchsia.logger.LogSink",
"fuchsia.process.Launcher",
],
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*" ],
},
],
}