Bootstrap OpenBitdo clean-room SDK and reliability milestone

This commit is contained in:
2026-02-27 20:43:34 -05:00
commit d5afadf560
46 changed files with 3652 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
use std::path::PathBuf;
use std::process::Command;
#[test]
fn guard_script_passes() {
let manifest = PathBuf::from(env!("CARGO_MANIFEST_DIR"));
let sdk_root = manifest.join("../..");
let script = sdk_root.join("scripts/cleanroom_guard.sh");
let status = Command::new("bash")
.arg(script)
.current_dir(&sdk_root)
.status()
.expect("run cleanroom_guard.sh");
assert!(status.success());
}