From 42fb11f887c574530e52a055cd3b735ff06c102f Mon Sep 17 00:00:00 2001 From: mcarton Date: Fri, 2 Dec 2016 20:33:37 +0100 Subject: [PATCH] Don't set RUST_BACKTRACE for tests It is slow but it can be useful and can be set/unset explicitly before running tests if needed. There is no backtrace by default anyway. --- tests/compile-test.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/tests/compile-test.rs b/tests/compile-test.rs index 50701ce0ec99..deadd499192d 100644 --- a/tests/compile-test.rs +++ b/tests/compile-test.rs @@ -21,7 +21,6 @@ fn run_mode(dir: &'static str, mode: &'static str) { fn prepare_env() { set_var("CLIPPY_DISABLE_WIKI_LINKS", "true"); - set_var("RUST_BACKTRACE", "0"); // these are riddicously slow right now } #[test]