blob: 050c7d999b74d8e9db8b86913a541a1ca37e62a1 [file] [log] [blame]
// Copyright 2023 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 URL here. This
// needs to work for all the different filesystem test harnesses.
name: "fs_test",
url: "fuchsia-pkg://fuchsia.com/fxfs-conformance-test#meta/fxfs-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",
},
],
}