rust-lang / backtrace-rs

Backtraces in Rust

Home Page:https://docs.rs/backtrace

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

accuracy test is failing since nightly-2024-04-27

philipc opened this issue · comments

See #616. Failures appear to be due to rust-lang/rust#120845. Using the unstable attribute mentioned in that PR fixes it:

--- a/tests/accuracy/main.rs
+++ b/tests/accuracy/main.rs
@@ -6,6 +6,7 @@ macro_rules! pos {
     };
 }
 
+#[collapse_debuginfo(yes)]
 macro_rules! check {
     ($($pos:expr),*) => ({
         verify(&[$($pos,)* pos!()]);

Solved in #621