Add a dbg!() to diagnose #570.

This won't fix anything, but it will let us see what the backtrace
looks like when it fails.
This commit is contained in:
Nick Mathewson 2022-09-08 09:58:05 -04:00
parent d9c140992f
commit a7d9d2ceb1
1 changed files with 9 additions and 0 deletions

View File

@ -248,6 +248,14 @@ impl HasKind for Bug {
#[allow(clippy::unwrap_used)]
#[cfg(test)]
mod test {
// @@ begin test lint list maintained by maint/add_warning @@
#![allow(clippy::bool_assert_comparison)]
#![allow(clippy::clone_on_copy)]
#![allow(clippy::dbg_macro)]
#![allow(clippy::print_stderr)]
#![allow(clippy::print_stdout)]
#![allow(clippy::unwrap_used)]
//! <!-- @@ end test lint list maintained by maint/add_warning @@ -->
use super::*;
// We test this on "important" and "reliable" platforms only.
@ -276,6 +284,7 @@ mod test {
assert!(e.0.source.is_none());
let s = e.to_string();
dbg!(&s);
assert!(s.starts_with("internal error (bug) at "));
assert!(s.contains("Couldn't wobble the wobbling device."));