| // Copyright 2024 The Fuchsia Authors. All rights reserved. |
| // Use of this s4urce code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| { |
| include: [ |
| "sys/testing/elf_test_runner.shard.cml", |
| "syslog/client.shard.cml", |
| ], |
| program: { |
| binary: "test/cm_fuchsia_io", |
| }, |
| children: [ |
| { |
| name: "child", |
| url: "#meta/child.cm", |
| }, |
| ], |
| use: [ |
| { |
| protocol: "fuchsia.test.Void", |
| |
| // This is an optional route that goes to void. |
| from: "#child", |
| availability: "optional", |
| }, |
| { |
| // This is a broken route. |
| protocol: "fuchsia.test.Broken", |
| from: "#child", |
| availability: "optional", |
| }, |
| ], |
| } |