From f245d8ea8fbb8a623a848fd5b633e5d99e598804 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?D=C3=A1niel=20Buga?= Date: Wed, 18 Sep 2024 16:21:00 +0200 Subject: [PATCH] Pass --verify when running HIL tests --- xtask/src/main.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xtask/src/main.rs b/xtask/src/main.rs index bee9d8fafbf..c66a4593cdd 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -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()