-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
imp(test): turn on full backtraces and disable frame filtering #3763
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
There are about 7 other instances of RUST_BACKTRACE
in Zebra, can you fix them all?
I'm marking this as a low priority, because it only caused that one problem. |
We also need `RUST_LIB_BACKTRACE` as stated in: https://docs.rs/color-eyre/latest/color_eyre/#multiple-report-format-verbosity-levels https://doc.rust-lang.org/std/backtrace/index.html#environment-variables Co-authored-by: teor <[email protected]>
…CKTRACE and COLORBT_SHOW_HIDDEN
Codecov Report
@@ Coverage Diff @@
## main #3763 +/- ##
==========================================
- Coverage 78.91% 78.88% -0.04%
==========================================
Files 292 292
Lines 33311 33311
==========================================
- Hits 26287 26276 -11
- Misses 7024 7035 +11 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Happy to approve as is, or anyone can approve after the minor fix.
|
Motivation
In #3489, the test failure was hard to diagnose, because
COLORBT_SHOW_HIDDEN=1
hid some of the function calls we needed to see.Fixes #3536
Specifications
https://github.com/athre0z/color-backtrace/blob/master/CHANGELOG.md#v042-2020-05-19
Solution
Review
Anyone can review this