blob: e208c1858ca51a2a926c2641829230b1e23f1e95 [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",
"sys/component/realm_builder.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/diagnostics_test",
args: [ "--test-threads=1" ],
},
collections: [
{
name: "coll",
durability: "transient",
},
],
use: [
{
protocol: "fuchsia.diagnostics.ArchiveAccessor",
from: "parent",
},
],
offer: [
{
protocol: "fuchsia.logger.LogSink",
from: "parent",
to: "#coll",
},
],
}