blob: 6a2fa7474bbf0a9d959b28b89e6d5f39887ef440 [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/sys/test_runners/rust/default.shard.cml",
],
program: {
binary: "bin/minfs_stressor",
args: [
// 22 hour time limit
"--time-limit-secs",
"79200",
],
},
children: [
{
name: "isolated-devmgr",
url: "fuchsia-pkg://fuchsia.com/storage-isolated-devmgr#meta/isolated-devmgr.cm",
},
],
use: [
// Used to access the /dev directory of isolated-devmgr
{
directory: "hub",
from: "framework",
rights: [ "r*" ],
path: "/hub",
},
// Used to start filesystem processes
{ protocol: "fuchsia.process.Launcher" },
],
offer: [
{
protocol: [
"fuchsia.logger.LogSink",
"fuchsia.process.Launcher",
],
from: "parent",
to: [ "#isolated-devmgr" ],
},
],
expose: [
// Makes it easier to access the /dev directory of isolated-devmgr from the hub
{
directory: "dev",
from: "#isolated-devmgr",
},
],
}