blob: caaec0f9c1ce49c4715651e29e35a174371b84dc [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/gtest/default.shard.cml",
"syslog/client.shard.cml",
],
program: {
binary: "test/early-boot-instrumentation-integration-test",
},
children: [
{
name: "resource-provider",
url: "#meta/early-boot-instrumentation-provider.cm",
},
{
name: "early-boot-instrumentation",
url: "#meta/early-boot-instrumentation.cm",
},
],
use: [
{
directory: "prof-data",
from: "#early-boot-instrumentation",
rights: [ "r*" ],
path: "/profraw",
},
],
offer: [
{
directory: [ "boot" ],
from: "#resource-provider",
to: "#early-boot-instrumentation",
rights: [ "r*" ],
},
{
protocol: [ "fuchsia.logger.LogSink" ],
from: "parent",
to: [
"#early-boot-instrumentation",
"#resource-provider",
],
},
],
}