blob: 362d5bd9fcf820e05d68cb88dddb42371a68785b [file] [log] [blame]
// Copyright 2022 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",
"inspect/offer.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/io1_conformance_test",
},
children: [
{
// TODO(https://fxbug.dev/42109125): Don't hardcode the minfs URL here. This
// needs to work for all the different filesystem test harnesses.
name: "fs_test",
url: "fuchsia-pkg://fuchsia.com/minfs-io1-conformance-test#meta/minfs-harness.cm",
},
],
use: [
{
protocol: [ "fuchsia.process.Launcher" ],
},
{
protocol: "fuchsia.component.Realm",
from: "framework",
},
],
offer: [
{
protocol: [
"fuchsia.logger.LogSink",
"fuchsia.process.Launcher",
],
from: "parent",
to: "#fs_test",
},
],
}