blob: 979d0052fd17e6cfed23926eea88c30ef640b9d1 [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.
// This is a v2 component manifest.
{
include: [
"//src/lib/fuchsia-hyper/hyper_testing.shard.cml",
"//src/sys/test_runners/rust/default.shard.cml",
"inspect/client.shard.cml",
// This test depends on root ssl certificate which is a system capability.
"sys/testing/system-test.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/http_sse_lib_test",
},
children: [
{
name: "netstack",
url: "#meta/netstack.cm",
},
{
name: "dns_resolver",
url: "#meta/dns_resolver.cm",
},
],
use: [
{
protocol: [ "fuchsia.net.name.Lookup" ],
from: "#dns_resolver",
},
{
protocol: [ "fuchsia.posix.socket.Provider" ],
from: "#netstack",
},
{
directory: "root-ssl-certificates",
rights: [ "r*" ],
path: "/config/ssl",
},
],
}