blob: 585463382ced8ebfdaad2d174e33da68e3f4ceac [file]
// Copyright 2025 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/lib.shard.cml",
"syslog/client.shard.cml",
],
program: {
// zxtest is the same as gtest, but it uses the next VDSO to support core tests.
runner: "elf",
binary: "bin/gtest_runner",
args: [ "--duplicate-vdso-for-children" ],
use_next_vdso: "true",
},
capabilities: [
{
runner: "zxtest_runner",
path: "/svc/fuchsia.component.runner.ComponentRunner",
},
],
use: [
{
storage: "data",
path: "/data",
},
{
protocol: [ "fuchsia.process.Launcher" ],
},
],
expose: [
{
runner: "zxtest_runner",
from: "self",
},
],
}