Pass --verify when running HIL tests (#2188)

This commit is contained in:
Dániel Buga 2024-09-18 16:39:35 +02:00 committed by GitHub
parent b1ca30e404
commit c0a9934e62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -732,6 +732,8 @@ fn run_elfs(args: RunElfArgs) -> Result<()> {
command.arg("--speed").arg("15000");
};
command.arg("--verify");
let mut command = command.spawn().context("Failed to execute probe-rs")?;
let status = command
.wait()