blob: a51fc81e00f9f15cdb7f615ec5df00ff25284e43 [file]
// Copyright 2024 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: {
runner: "elf",
binary: "bin/fuzz_test_runner",
job_policy_create_raw_processes: "true",
is_shared_process: "true",
use_next_vdso: "true",
},
capabilities: [
{
runner: "fuzz_starnix_test_runner",
path: "/svc/fuchsia.component.runner.ComponentRunner",
},
],
use: [
{
storage: "data",
path: "/data",
},
{
directory: "boot-kernel",
rights: [ "r*" ],
path: "/boot/kernel",
},
{
protocol: [
"fuchsia.fuzzer.Registrar",
"fuchsia.process.Launcher",
],
},
],
expose: [
{
runner: "fuzz_starnix_test_runner",
from: "self",
},
],
}