blob: a203cacc8e55119b92881a53ceacb98d150017d7 [file] [log] [blame]
// Copyright 2021 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: [
"//sdk/lib/diagnostics/syslog/client.shard.cml",
"//src/lib/fuchsia-component-test/meta/fuchsia_component_test.shard.cml",
],
program: {
runner: "elf",
binary: "bin/netemul_sandbox_v2",
},
collections: [
{
name: "netemul",
environment: "#fuchsia_component_test_env_with_registry",
durability: "transient",
},
],
capabilities: [
{ protocol: "fuchsia.netemul.Sandbox" },
],
offer: [
{
protocol: [
"fuchsia.logger.LogSink",
"fuchsia.process.Launcher",
],
from: "parent",
to: "#netemul",
},
],
expose: [
{
protocol: "fuchsia.netemul.Sandbox",
from: "self",
},
],
}