1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
//! Integration test harness: every test drives the COMPILED vetto binary as
//! a child process. All enforcement tests are conditional on the platform
//! actually supporting a tier (see common::detected_tier) — skipping on
//! unsupported environments is part of the spec, not a failure.
#![allow(clippy::all)]
mod common;
mod adv_isolation;
mod cli_auto_enable;
mod cli_reporting;
mod doctor_parity;
mod ecosystem_tier7;
mod enable_wrapper;
#[cfg(unix)]
mod entrypoint_contract_parity;
#[cfg(target_os = "linux")]
mod env_stripping;
mod git_hooks;
mod heavy_scenarios;
#[cfg(target_os = "linux")]
mod lifecycle_phase3;
#[cfg(target_os = "linux")]
mod linux_downgrade;
#[cfg(target_os = "linux")]
mod linux_landlock;
#[cfg(target_os = "linux")]
mod linux_limits_cli;
#[cfg(target_os = "linux")]
mod linux_netmodes;
#[cfg(target_os = "linux")]
mod linux_orphans;
#[cfg(target_os = "linux")]
mod linux_redteam;
#[cfg(target_os = "linux")]
mod linux_seccomp_blocks;
#[cfg(target_os = "linux")]
mod linux_subagents;
#[cfg(target_os = "linux")]
mod linux_tiers;
#[cfg(target_os = "linux")]
mod linux_timeout;
#[cfg(target_os = "linux")]
mod linux_verify;
#[cfg(target_os = "linux")]
mod linux_visibility;
mod macos_prod;
mod macos_seatbelt;
mod multi_agent;
mod onboarding;
mod policy_loading;
mod policy_overlays;
mod policy_parity;
mod policy_tools;
mod policy_ux_phase5;
mod prod_stage3c;
mod rescue;
mod resource_limits_e2e;
mod secret_masking;
mod shim_interception;
mod test_agent_profiles_e2e;
#[cfg(target_os = "linux")]
mod test_job_control;
mod test_shell_hook_precedence;
mod test_startup_latency;
mod tier3_files_secrets;
mod tier8_release;
mod tier9_friction;
mod verify_ng_backend_arch;
#[cfg(target_os = "linux")]
mod verify_ng_boundary_contract;
#[cfg(target_os = "linux")]
mod verify_ng_env_contract;
#[cfg(unix)]
mod verify_ng_execution;
#[cfg(unix)]
mod verify_ng_host_evidence;
#[cfg(target_os = "linux")]
mod verify_ng_linux_enforce;
#[cfg(target_os = "linux")]
mod verify_ng_network_contract;
#[cfg(target_os = "linux")]
mod verify_ng_proc_contract;
#[cfg(target_os = "linux")]
mod verify_ng_tamper_contract;
mod verify_ng_traps;
mod windows_enforcement;
mod windows_production;
mod windows_sandbox;