blob: c48d581b5982b5773228395359c33685dfa23157 [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: [
"//src/sys/test_runners/rust/default.shard.cml",
"//src/sys/test_runners/tmp_storage.shard.cml",
"inspect/offer.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/run_test_suite_lib_lib_test",
},
children: [
{
name: "test_realm",
url: "#meta/test_realm.cm",
},
{
name: "no_realm_protocol_realm",
url: "#meta/no_realm_protocol_realm.cm",
},
],
use: [
{
protocol: "fuchsia.sys2.LifecycleController",
from: "framework",
},
{
protocol: "fuchsia.sys2.RealmQuery",
from: "framework",
},
],
offer: [
{
event_stream: [ "capability_requested" ],
from: "parent",
to: "#test_realm",
scope: "#test_realm",
},
{
event_stream: [ "capability_requested" ],
from: "parent",
to: "#no_realm_protocol_realm",
scope: "#no_realm_protocol_realm",
},
],
}