We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f975de9 commit bd2a59dCopy full SHA for bd2a59d
tests/runner/src/lib.rs
@@ -78,8 +78,8 @@ pub fn run_test_kernel_on_uefi_pxe(kernel_binary_path: &str) {
78
.unwrap();
79
80
match child_output.status.code() {
81
- Some(33) => {} // success
82
- Some(35) => panic!("Test failed"), // success
+ Some(33) => {} // success
+ Some(35) => panic!("Test failed"),
83
other => panic!("Test failed with unexpected exit code `{:?}`", other),
84
}
85
0 commit comments