| // 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: [ "syslog/client.shard.cml" ], |
| children: [ |
| { |
| name: "test_realm_factory", |
| url: "driver-testing-realm-factory#meta/realm-factory.cm", |
| }, |
| { |
| name: "test_suite", |
| url: "basic-driver-test#meta/test-suite.cm", |
| }, |
| ], |
| offer: [ |
| { |
| protocol: "fuchsia.component.resolution.Resolver-hermetic", |
| from: "parent", |
| to: [ |
| "#test_realm_factory", |
| "#test_suite", |
| ], |
| }, |
| { |
| protocol: "fuchsia.pkg.PackageResolver-hermetic", |
| from: "parent", |
| to: "#test_realm_factory", |
| }, |
| { |
| protocol: "fuchsia.driver.testing.RealmFactory", |
| from: "#test_realm_factory", |
| to: "#test_suite", |
| }, |
| ], |
| expose: [ |
| { |
| protocol: "fuchsia.test.Suite", |
| from: "#test_suite", |
| }, |
| ], |
| } |