blob: b0ef3dbafe28f876b83fe6e14dae532c689fe35c [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_lib_test",
},
children: [
{
name: "netstack",
url: "#meta/netstack.cm",
},
],
use: [
{
protocol: [
"fuchsia.net.name.Lookup",
"fuchsia.posix.socket.Provider",
],
from: "#netstack",
},
// TODO(https://fxbug.dev/42055086) package our own certs and remove from system test realm
{
directory: "root-ssl-certificates",
rights: [ "r*" ],
path: "/config/ssl",
},
],
offer: [
{
protocol: [ "fuchsia.logger.LogSink" ],
from: "parent",
to: "#netstack",
},
{
storage: "cache",
from: "parent",
to: [ "#netstack" ],
},
],
}