blob: 0eb24d0b40fda5632396d81c01e98e1b23f97d78 [file] [log] [blame]
// Copyright 2020 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/lib/fuchsia-hyper/hyper_testing.shard.cml" ],
children: [
{
name: "test_driver",
url: "fuchsia-pkg://fuchsia.com/pkg-resolver-unit-tests#meta/test_driver.cm",
},
{
name: "netstack",
url: "fuchsia-pkg://fuchsia.com/pkg-resolver-unit-tests#meta/netstack.cm",
},
{
name: "dns_resolver",
url: "fuchsia-pkg://fuchsia.com/pkg-resolver-unit-tests#meta/dns_resolver.cm",
},
],
offer: [
{
protocol: [ "fuchsia.posix.socket.Provider" ],
from: "#netstack",
to: [ "#test_driver" ],
},
{
protocol: [ "fuchsia.net.NameLookup" ],
from: "#dns_resolver",
to: [ "#test_driver" ],
},
{
protocol: [
"fuchsia.logger.LogSink",
"fuchsia.process.Launcher",
],
from: "parent",
to: [ "#test_driver" ],
},
{
storage: "temp",
from: "parent",
to: [ "#test_driver" ],
},
{
directory: "config-ssl",
from: "parent",
to: [ "#test_driver" ],
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#test_driver",
},
],
}