blob: 00828bd0aa9f1680521bd70f29813f8cf34ec68e [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: [
// gtest runner
"//src/sys/test_runners/gtest/default.shard.cml",
// Enable system logging
"syslog/client.shard.cml",
],
program: {
binary: "bin/server_suite_harness",
},
children: [
{
name: "cpp",
url: "#meta/server.cm",
},
],
use: [
{
protocol: "fidl.serversuite.Runner",
from: "#cpp",
},
],
offer: [
{
protocol: [ "fuchsia.logger.LogSink" ],
from: "parent",
to: "#cpp",
},
],
}