blob: 8725555e07491743ebefedf3ee7694e1287acd49 [file] [log] [blame]
// Copyright 2023 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_suite",
url: "fuchsia-settings-tests#meta/test-suite.cm",
},
{
name: "test_realm_factory",
url: "fuchsia-settings-test-realm-factory#meta/realm-factory.cm",
},
],
offer: [
// The F15 CTF test still uses this.
{
protocol: "fuchsia.settings.Privacy",
from: "parent",
to: "#test_suite",
},
{
protocol: [ "fuchsia.settings.test.RealmFactory" ],
from: "#test_realm_factory",
to: "#test_suite",
},
{
storage: "data",
from: "parent",
to: "#test_realm_factory",
},
{
dictionary: "diagnostics",
from: "parent",
to: "#test_realm_factory",
},
],
expose: [
{
protocol: "fuchsia.test.Suite",
from: "#test_suite",
},
],
}