blob: 756af6af2c4fc24c35e2f91f3906f54926ba68f5 [file] [log] [blame]
// Copyright 2021 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",
"syslog/offer.shard.cml",
],
children: [
{
name: "unittests",
url: "#meta/unittests.cm",
},
{
name: "relay",
url: "#meta/test-relay.cm",
},
],
offer: [
{
runner: "gtest_runner",
from: "parent",
to: [ "#unittests" ],
},
{
protocol: [ "fuchsia.process.Launcher" ],
from: "parent",
to: "#unittests",
},
{
protocol: [ "test.fuzzer.Relay" ],
from: "#relay",
to: "#unittests",
},
{
storage: "tmp",
from: "parent",
to: "#unittests",
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#unittests",
},
],
}