diff options
author | Daniel Mueller <deso@posteo.net> | 2019-05-24 18:08:42 -0700 |
---|---|---|
committer | Daniel Mueller <deso@posteo.net> | 2019-05-24 18:08:42 -0700 |
commit | b637d5284c6117da3bfeb471da7c62e53a632621 (patch) | |
tree | b96df01ed2c0f14a02a6ec62de7d834c153435f0 /cc/tests/cc_env.rs | |
parent | 82cf43dd887801b8b22b8aae8c02854d921915d5 (diff) | |
download | nitrocli-b637d5284c6117da3bfeb471da7c62e53a632621.tar.gz nitrocli-b637d5284c6117da3bfeb471da7c62e53a632621.tar.bz2 |
Update cc crate to 1.0.37
This change updates the cc crate to version 1.0.37.
Import subrepo cc/:cc at cbf6d2f1312b6be22a7a363cf5c2a02acabc531f
Diffstat (limited to 'cc/tests/cc_env.rs')
-rw-r--r-- | cc/tests/cc_env.rs | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/cc/tests/cc_env.rs b/cc/tests/cc_env.rs index f9386d7..e862fea 100644 --- a/cc/tests/cc_env.rs +++ b/cc/tests/cc_env.rs @@ -2,8 +2,8 @@ extern crate cc; extern crate tempdir; use std::env; -use std::path::Path; use std::ffi::OsString; +use std::path::Path; mod support; use support::Test; @@ -63,14 +63,16 @@ fn ccache_env_flags() { .cflags_env() .into_string() .unwrap() - .contains("ccache") == false + .contains("ccache") + == false ); assert!( compiler .cflags_env() .into_string() .unwrap() - .contains(" lol-this-is-not-a-compiler") == false + .contains(" lol-this-is-not-a-compiler") + == false ); env::set_var("CC", ""); |