Add deterministic agent protocol harness (#133)
Some checks failed
CI / rust-skia (Rust only) (push) Successful in 2m46s
CI / required (push) Failing after 53s

This commit is contained in:
2026-08-18 12:14:34 +02:00
parent 11a8c37f21
commit fe8d0119ef
5 changed files with 1602 additions and 31 deletions

View File

@@ -52,10 +52,10 @@ fn package_has_only_reviewed_rust_dependencies_and_no_build_script() {
#[test]
fn runtime_source_has_no_subprocess_or_native_abi_escape_hatch() {
let source = PathBuf::from(env!("CARGO_MANIFEST_DIR")).join("src");
let mut files = Vec::with_capacity(36);
let mut files = Vec::with_capacity(37);
collect_rust_files(&source, &mut files);
assert!(
files.len() <= 36,
files.len() <= 37,
"source-file count needs a reviewed bound update"
);
for path in files {