Searched refs:actual_boot_b (Results 1 – 1 of 1) sorted by relevance
/bootable/libbootloader/gbl/libstorage/src/ |
D | gpt.rs | 585 let mut actual_boot_b = vec![0u8; expect_boot_b.len()]; in test_gpt_read() localVariable 594 dev.read_gpt_partition("boot_b", 0, &mut actual_boot_b).unwrap(); in test_gpt_read() 595 assert_eq!(expect_boot_b.to_vec(), actual_boot_b); in test_gpt_read() 597 actual_boot_b = actual_boot_b[1..].to_vec(); in test_gpt_read() 598 dev.read_gpt_partition("boot_b", 1, &mut actual_boot_b).unwrap(); in test_gpt_read() 599 assert_eq!(expect_boot_b[1..].to_vec(), actual_boot_b); in test_gpt_read() 615 let mut actual_boot_b = vec![0u8; expect_boot_b.len()]; in test_gpt_write() localVariable 630 dev.read_gpt_partition("boot_b", 0, &mut actual_boot_b).unwrap(); in test_gpt_write() 631 assert_eq!(expect_boot_b.to_vec(), actual_boot_b); in test_gpt_write() 634 dev.read_gpt_partition("boot_b", 1, &mut actual_boot_b[1..]).unwrap(); in test_gpt_write() [all …]
|