We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f48d1c commit 1c3750dCopy full SHA for 1c3750d
src/run.rs
@@ -69,6 +69,7 @@ pub fn run(
69
let qemu_exit_code = exit_status.code().ok_or(RunError::NoQemuExitCode)?;
70
match config.test_success_exit_code {
71
Some(code) if qemu_exit_code == code => 0,
72
+ Some(_) if qemu_exit_code == 0 => 1,
73
_ => qemu_exit_code,
74
}
75
0 commit comments