Closed
Description
Since #117089 was merged, the error_with_backtrace_outputs_correctly_with_one_source
std test fails with the following error on windows7:
---- error::tests::error_with_backtrace_outputs_correctly_with_one_source stdout ----
thread 'error::tests::error_with_backtrace_outputs_correctly_with_one_source' panicked at library/std/src/../../backtrace/src/dbghelp.rs:168:1:
called `Option::unwrap()` on a `None` value
After some further instrumentation, I was able to find out the source of the problem: Failed to find SymAddrIncludeInlineTrace in dbghelp
. This was likely caused by rust-lang/backtrace-rs@c1464fa , which reworked the backtracing code on windows to be faster through the use of newer APIs. Unfortunately, not all of those APIs are available in Windows 7.
Version it worked on
Version with regression
@rustbot modify labels: +regression-from-stable-to-nightly -regression-untriaged