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 472f059 commit 26dd52fCopy full SHA for 26dd52f
uefi-test-runner/src/boot/memory.rs
@@ -89,7 +89,10 @@ fn memory_map(bt: &BootServices) {
89
90
for value in descriptors.iter().skip(1) {
91
if value.phys_start <= curr_value.phys_start {
92
- panic!("memory map sorting failed");
+ panic!(
93
+ "memory map sorting failed: {:x} <= {:x}",
94
+ value.phys_start, curr_value.phys_start
95
+ );
96
}
97
curr_value = *value;
98
0 commit comments