blob: 56f9351cf196cea61da3fed084af00d0aa57a16e [file] [log] [blame]
// Copyright 2023 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: [
"//src/sys/test_manager/meta/test_manager_for_test.shard.cml",
"//src/sys/test_runners/rust/default.shard.cml",
"inspect/offer.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/test_manager_specified_realm_test",
},
children: [
{
name: "test_realm",
url: "#meta/test_realm.cm",
},
],
use: [
{
protocol: "fuchsia.test.manager.RunBuilder",
from: "#test_manager",
},
{
protocol: "fuchsia.component.Realm",
from: "#test_realm",
},
{
protocol: "fuchsia.test.manager.Query",
from: "#test_manager",
},
],
offer: [
{
event_stream: [ "capability_requested" ],
from: "parent",
to: "#test_realm",
scope: "#test_realm",
},
],
}