blob: 2410b9e5ad762b11bda46a55731f223422e06fd8 [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: [ "inspect/offer.shard.cml" ],
children: [
{
name: "test_driver",
url: "#meta/custom_artifact_user.cm",
},
],
use: [
{
storage: "custom_artifacts",
rights: [ "rw*" ],
path: "/custom_artifacts",
},
],
offer: [
{
storage: "custom_artifacts",
from: "parent",
to: "#test_driver",
},
{
protocol: "fuchsia.logger.LogSink",
from: "parent",
to: "#test_driver",
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#test_driver",
},
],
}