blob: 6d635a3ae79f7b6c9329983a56b2a61b8784807a [file]
// 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",
"sys/component/realm_builder.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "bin/persistence_integration_test",
},
use: [
{
storage: "tmp",
path: "/tmp",
},
{
event_stream: [
"started",
"stopped",
],
},
],
offer: [
{
storage: "cache",
from: "parent",
to: [ "#realm_builder" ],
},
{
protocol: [
"fuchsia.process.Launcher",
"fuchsia.tracing.provider.Registry",
],
from: "parent",
to: "#realm_builder",
},
],
}