blob: 08c1ee0d3aaf9eeebd1cf75318176a34d8baa31b [file] [log] [blame]
{
include: [ "//sdk/lib/diagnostics/syslog/client.shard.cml" ],
program: {
runner: "elf",
binary: "bin/use_dir_rights",
},
capabilities: [
{ protocol: "fidl.test.components.Trigger" },
],
use: [
// This is invalid and should fail.
{
directory: "read_only",
rights: [ "rw*" ],
path: "/read_only",
},
{
directory: "read_write",
rights: [ "rw*" ],
path: "/read_write",
},
{
directory: "read_write_dup",
rights: [ "rw*" ],
path: "/read_write_dup",
},
{
directory: "read_exec",
rights: [ "rx*" ],
path: "/read_exec",
},
{
directory: "read_admin",
rights: [
"admin",
"r*",
],
path: "/read_admin",
},
{
directory: "read_only_after_scoped",
rights: [ "r*" ],
path: "/read_only_after_scoped",
},
],
expose: [
{
protocol: "fidl.test.components.Trigger",
from: "self",
},
],
}