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 @@ -85,14 +85,14 @@ mod nvme;
8585mod pi;
8686mod rng;
8787mod scsi;
88- mod shell_params;
8988#[ cfg( any(
9089 target_arch = "x86" ,
9190 target_arch = "x86_64" ,
9291 target_arch = "arm" ,
9392 target_arch = "aarch64"
9493) ) ]
9594mod shell;
95+ mod shell_params;
9696mod shim;
9797mod string;
9898mod 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