about summary refs log tree commit diff
diff options
context:
space:
mode:
authormemoryleak47 <memoryleak47@protonmail.ch>2018-04-03 23:36:47 +0200
committermemoryleak47 <memoryleak47@protonmail.ch>2018-04-03 23:36:47 +0200
commit03e1509f577c2a474ade1d286210fbf1142d4103 (patch)
treeb57e857847500f909b82bd9b79e35b65f6d5b9af
parentda4bf140576125c322ba7dafcb1f8585931ab812 (diff)
downloadrust-03e1509f577c2a474ade1d286210fbf1142d4103.tar.gz
rust-03e1509f577c2a474ade1d286210fbf1142d4103.zip
make tidy happy
-rw-r--r--src/tools/compiletest/src/main.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/main.rs b/src/tools/compiletest/src/main.rs
index 727d6693396..80cab96434b 100644
--- a/src/tools/compiletest/src/main.rs
+++ b/src/tools/compiletest/src/main.rs
@@ -623,7 +623,8 @@ pub fn make_test(config: &Config, testpaths: &TestPaths) -> test::TestDescAndFn
     };
 
     // Debugging emscripten code doesn't make sense today
-    let ignore = early_props.ignore || (!up_to_date(config, testpaths, &early_props) && config.compare_mode.is_none())
+    let ignore = early_props.ignore
+        || (!up_to_date(config, testpaths, &early_props) && config.compare_mode.is_none())
         || (config.mode == DebugInfoGdb || config.mode == DebugInfoLldb)
             && config.target.contains("emscripten");