diff options
| author | memoryleak47 <memoryleak47@protonmail.ch> | 2018-04-03 23:36:47 +0200 |
|---|---|---|
| committer | memoryleak47 <memoryleak47@protonmail.ch> | 2018-04-03 23:36:47 +0200 |
| commit | 03e1509f577c2a474ade1d286210fbf1142d4103 (patch) | |
| tree | b57e857847500f909b82bd9b79e35b65f6d5b9af | |
| parent | da4bf140576125c322ba7dafcb1f8585931ab812 (diff) | |
| download | rust-03e1509f577c2a474ade1d286210fbf1142d4103.tar.gz rust-03e1509f577c2a474ade1d286210fbf1142d4103.zip | |
make tidy happy
| -rw-r--r-- | src/tools/compiletest/src/main.rs | 3 |
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"); |
