We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 72b2135 commit 3bff68aCopy full SHA for 3bff68a
uefi-test-runner/src/main.rs
@@ -48,12 +48,8 @@ fn efi_main(image: Handle, mut st: SystemTable<Boot>) -> Status {
48
// Check the `uefi::system` module.
49
check_system(&st);
50
51
- // Test all the boot services.
52
- let bt = st.boot_services();
53
-
54
// Try retrieving a handle to the file system the image was booted from.
55
- bt.get_image_file_system(image)
56
- .expect("Failed to retrieve boot file system");
+ uefi::boot::get_image_file_system(image).expect("Failed to retrieve boot file system");
57
58
boot::test(&st);
59
0 commit comments