blob: a22bae5e16fec9adbf3f588c1f4194be71ddaded [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'",
// Ensure component manager has at least 256KiB of space
// for inspect, and that this limit is not reached.
"<component_manager>:root/fuchsia.inspect.Stats:current_size WHERE [a] a < 256*1024",
"<component_manager>:root/fuchsia.inspect.Stats:maximum_size WHERE [a] a >= 256*1024",
],
},
}