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 15f10d3 commit 136b88fCopy full SHA for 136b88f
uefi-test-runner/src/main.rs
@@ -28,6 +28,7 @@ fn efi_main(image: Handle, mut st: SystemTable<Boot>) -> Status {
28
let mut buf = String::new();
29
st.firmware_vendor().as_str_in_buf(&mut buf).unwrap();
30
info!("Firmware Vendor: {}", buf.as_str());
31
+ assert_eq!(buf, "EDK II");
32
33
// Test print! and println! macros.
34
let (print, println) = ("print!", "println!"); // necessary for clippy to ignore
0 commit comments