blob: dd5a3fd02118b7e27f83f3d8c00cb4857491d029 [file] [log] [blame]
// Copyright 2022 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/inspect/default.shard.cml" ],
program: {
accessor: "ALL",
timeout_seconds: "60",
cases: [
// Component manager reports that it is healthy.
"<component_manager>:root/fuchsia.inspect.Health:status WHERE [a] a == 'OK'",
// LINT.IfChange
// Ensure component manager has at least 300KiB of space
// for inspect, and that this limit is not reached.
"<component_manager>:root/fuchsia.inspect.Stats:current_size WHERE [a] a < 350*1024",
"<component_manager>:root/fuchsia.inspect.Stats:maximum_size WHERE [a] a >= 350*1024",
// LINT.ThenChange(/src/sys/component_manager/src/builtin_environment.rs)
],
},
}