blob: 4bd5f119ff5f9f192fa178834dac7dedd474549e [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: [
"sys/component/realm_builder.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/child_for_stress_test",
},
collections: [
{
name: "children",
durability: "transient",
},
],
capabilities: [
{ protocol: "test.componentmanager.stresstests.ChildRealm" },
],
offer: [
{
protocol: "fuchsia.logger.LogSink",
from: "parent",
to: "#children",
},
],
expose: [
{
protocol: "test.componentmanager.stresstests.ChildRealm",
from: "self",
},
],
}