diff options
author | Joe Wilm <joe@jwilm.com> | 2017-01-23 08:06:09 -0800 |
---|---|---|
committer | Joe Wilm <jwilm@users.noreply.github.com> | 2017-01-23 08:59:54 -0800 |
commit | b23ed6ed4c53a6d010238643c443da6db3931a87 (patch) | |
tree | 015dbb5cd980207d4d68613e9f2c259e12f68a24 /Cargo.toml | |
parent | 2ffdc8d9cae7ab7afc6fd7e1ca87e2d1cd2ba025 (diff) | |
download | alacritty-b23ed6ed4c53a6d010238643c443da6db3931a87.tar.gz alacritty-b23ed6ed4c53a6d010238643c443da6db3931a87.zip |
Capture test output by default
The `rustc-test` crate has this feature disabled by default causing all
of the test `println!` output to be displayed.
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -49,7 +49,7 @@ git = "https://github.com/jwilm/glutin" rev = "af7fe340bd4a2af53ea521defcb4f377cdc588cf" [dev-dependencies] -rustc-test = "0.1" +rustc-test = { version = "0.1", features = ["capture"] } [profile.release] lto = true |