We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4c407f3 commit dcc6aecCopy full SHA for dcc6aec
tests/skip_inner_frames.rs
@@ -26,7 +26,7 @@ fn backtrace_new_unresolved_should_start_with_call_site_trace() {
26
let this_ip = backtrace_new_unresolved_should_start_with_call_site_trace as *mut c_void;
27
println!("this_ip: {:p}", this_ip);
28
let frame_ip = b.frames().first().unwrap().symbol_address();
29
- assert_eq!(this_ip, frame_ip);
+ assert_eq!(this_ip, frame_ip, "backtrace was {b:?}");
30
}
31
32
#[test]
@@ -41,5 +41,5 @@ fn backtrace_new_should_start_with_call_site_trace() {
41
42
let this_ip = backtrace_new_should_start_with_call_site_trace as *mut c_void;
43
44
45
0 commit comments