blob: 8188ab7b3732f3baa3d5e8bec305bfb713f3144f [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: [
"//src/sys/test_runners/rust/default.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/fs_stressor",
args: [
// Run a 100 operations. This should fit in the CQ/CI time limits.
"--num-operations",
"100",
// Use a smaller ramdisk for short tests
"--ramdisk-block-count",
"27136",
// Enable debug logging for this variant
"-l",
"debug",
"--target-filesystem",
"minfs",
],
},
children: [
{
name: "driver-test-realm",
url: "#meta/storage_driver_test_realm.cm",
startup: "eager",
},
],
use: [
{
directory: "dev",
from: "#driver-test-realm",
rights: [ "rw*" ],
path: "/dev",
},
// Used to start filesystem processes
{ protocol: "fuchsia.process.Launcher" },
],
offer: [
{
protocol: [
"fuchsia.logger.LogSink",
"fuchsia.process.Launcher",
],
from: "parent",
to: [ "#driver-test-realm" ],
},
],
}