File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
uefi-test-runner/src/proto Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -90,14 +90,14 @@ mod pci;
9090mod pi;
9191mod rng;
9292mod scsi;
93- mod shell_params;
9493#[ cfg( any(
9594 target_arch = "x86" ,
9695 target_arch = "x86_64" ,
9796 target_arch = "arm" ,
9897 target_arch = "aarch64"
9998) ) ]
10099mod shell;
100+ mod shell_params;
101101mod shim;
102102mod string;
103103mod tcg;
Original file line number Diff line number Diff line change 1- use uefi:: CStr16 ;
21use uefi:: boot;
32use uefi:: proto:: shell:: Shell ;
3+ use uefi:: CStr16 ;
44
55pub fn test ( ) {
66 info ! ( "Running shell protocol tests" ) ;
77
88 let handle = boot:: get_handle_for_protocol :: < Shell > ( ) . expect ( "No Shell handles" ) ;
99
10- let mut shell = boot :: open_protocol_exclusive :: < Shell > ( handle )
11- . expect ( "Failed to open Shell protocol" ) ;
10+ let mut shell =
11+ boot :: open_protocol_exclusive :: < Shell > ( handle ) . expect ( "Failed to open Shell protocol" ) ;
1212
1313 // create some files
1414 let mut test_buf = [ 0u16 ; 12 ] ;
You can’t perform that action at this time.
0 commit comments