blob: ae2d6d96b533c281702987dd462507c99230f65a [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.
{
// This component serves the actual test runner protocol. It delegates running the actual test
// binary to the `fuchsia.component.runner.ComponentRunner` protocol offered by its parent.
include: [ "syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/starnix_test_runner",
use_next_vdso: "true",
},
capabilities: [
{
runner: "starnix_test_runner",
path: "/svc/fuchsia.component.runner.ComponentRunner",
},
],
use: [
{
storage: "data",
path: "/data",
},
{
storage: "tmp",
path: "/tmp",
},
],
expose: [
{
runner: "starnix_test_runner",
from: "self",
},
],
}