aboutsummaryrefslogtreecommitdiff
path: root/tests/cfail.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cfail.rs')
-rw-r--r--tests/cfail.rs5
1 files changed, 2 insertions, 3 deletions
diff --git a/tests/cfail.rs b/tests/cfail.rs
index 3636c72..6572d65 100644
--- a/tests/cfail.rs
+++ b/tests/cfail.rs
@@ -10,9 +10,8 @@ fn cfail() {
let mut config = Config::default();
config.mode = Mode::CompileFail;
config.src_base = PathBuf::from(format!("tests/cfail"));
- config.target_rustcflags = Some(
- "-C panic=abort -L target/debug -L target/debug/deps ".to_string(),
- );
+ config.target_rustcflags =
+ Some("-C panic=abort -L target/debug -L target/debug/deps ".to_string());
compiletest::run_tests(&config);
}