summary refs log tree commit diff
path: root/src/test/run-pass/multi-panic.rs
AgeCommit message (Collapse)AuthorLines
2016-01-29don't leak RUST_BACKTRACE into test processOliver Schneider-1/+4
If the tests were run with `RUST_BACKTRACE=1 make check` this test failed. If they were run without it it succeeded. We need to use `env_remove` instead of `env_clear` because the latter will never work on windows
2016-01-26Add message about RUST_BACKTRACE to default output of panic!Johannes Oertel-0/+30
The note will only be shown on the first panic.