inspect_validator/lib.rs
1// Copyright 2023 The Fuchsia Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5mod data; // Inspect data maintainer/updater/scanner-from-vmo; compare engine
6mod metrics; // Evaluates memory performance of Inspect library
7mod puppet; // Interface to target Inspect library wrapper programs (puppets)
8mod results; // Stores and formats reports-to-user
9mod runner; // Coordinates testing operations
10mod trials; // Defines the trials to run
11
12#[macro_use]
13mod macros; // Macros used for common validation actions
14
15pub use runner::run_all_trials;
16
17/// meta/validator.shard.cml must use this name in `children: name:`.
18const PUPPET_MONIKER: &str = "puppet";