blob: bc7052531b9089a8fa3e4fa4d73822c68f1b1688 [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: [
"inspect/client.shard.cml",
"syslog/client.shard.cml",
],
program: {
runner: "elf",
binary: "bin/counter",
},
capabilities: [
{ protocol: "fuchsia.netemul.test.Counter" },
],
use: [
{
protocol: [
"fuchsia.netemul.network.NetworkContext",
"fuchsia.netemul.test.CounterA",
"fuchsia.netemul.test.CounterB",
],
from: "parent",
},
{
storage: "data",
path: "/data",
},
{
storage: "cache",
path: "/cache",
},
{
directory: "test-specific-devfs",
rights: [ "r*" ],
path: "/dev",
},
],
expose: [
{
protocol: "fuchsia.netemul.test.Counter",
from: "self",
},
{
protocol: "fuchsia.netemul.test.Counter",
from: "self",
as: "fuchsia.netemul.test.CounterA",
},
{
protocol: "fuchsia.netemul.test.Counter",
from: "self",
as: "fuchsia.netemul.test.CounterB",
},
],
}