From f2dbdc4302b12c126953ac6ffb8609cb86659f22 Mon Sep 17 00:00:00 2001 From: Aaron Hill Date: Mon, 14 Jan 2019 01:16:27 -0500 Subject: [PATCH] Add 'rustc-env:RUST_BACKTRACE=0' to const-pat-ice test This ensures that the test passes, regardless of what the user has set RUST_BACKTRACE to. --- src/test/ui/pattern/const-pat-ice.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/ui/pattern/const-pat-ice.rs b/src/test/ui/pattern/const-pat-ice.rs index 6496a2ab69f5c..865c54be1ad7b 100644 --- a/src/test/ui/pattern/const-pat-ice.rs +++ b/src/test/ui/pattern/const-pat-ice.rs @@ -1,4 +1,5 @@ // failure-status: 101 +// rustc-env:RUST_BACKTRACE=0 // This is a repro test for an ICE in our pattern handling of constants.