blob: a885b5fa2a7063eddeea134068ca01ef6e586b5d [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",
"inspect/offer.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/fuchsia_hyper_test_support_lib_test",
},
children: [
{
name: "dns_resolver",
url: "#meta/dns_resolver.cm",
},
{
name: "netstack",
url: "#meta/netstack.cm",
},
],
use: [
{
protocol: [ "fuchsia.net.name.Lookup" ],
from: "#dns_resolver",
},
{
protocol: [
"fuchsia.net.routes.State",
"fuchsia.posix.socket.Provider",
],
from: "#netstack",
},
],
offer: [
{
protocol: [ "fuchsia.logger.LogSink" ],
from: "parent",
to: [
"#dns_resolver",
"#netstack",
],
},
{
protocol: [
"fuchsia.net.routes.State",
"fuchsia.posix.socket.Provider",
],
from: "#netstack",
to: [ "#dns_resolver" ],
},
{
storage: "cache",
from: "parent",
to: [ "#netstack" ],
},
],
}