Skip to content

Commit 26dd52f

Browse files
committed
uefi-test-runner: more verbosity
1 parent 472f059 commit 26dd52f

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

uefi-test-runner/src/boot/memory.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,10 @@ fn memory_map(bt: &BootServices) {
8989

9090
for value in descriptors.iter().skip(1) {
9191
if value.phys_start <= curr_value.phys_start {
92-
panic!("memory map sorting failed");
92+
panic!(
93+
"memory map sorting failed: {:x} <= {:x}",
94+
value.phys_start, curr_value.phys_start
95+
);
9396
}
9497
curr_value = *value;
9598
}

0 commit comments

Comments
 (0)