From 05aa983f4c3fa10de98be229451b32fdd5fa7c49 Mon Sep 17 00:00:00 2001 From: Ralf Jung Date: Fri, 2 Aug 2019 14:20:42 +0200 Subject: [PATCH] let us try to find out where that panic is coming from --- src/bootstrap/test.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/bootstrap/test.rs b/src/bootstrap/test.rs index 00a2802ba814..8b8b38b15098 100644 --- a/src/bootstrap/test.rs +++ b/src/bootstrap/test.rs @@ -413,6 +413,8 @@ impl Step for Miri { cargo.env("XARGO_RUST_SRC", builder.src.join("src")); // Make sure the libstd gets built without debug assertions. cargo.env("RUSTC_DEBUG_ASSERTIONS", "false"); + // Debug things. + cargo.env("RUST_BACKTRACE", "1"); if !try_run(builder, &mut cargo) { return;