diff options
| author | Michael Woerister <michaelwoerister@posteo> | 2017-11-14 19:52:49 +0100 |
|---|---|---|
| committer | Michael Woerister <michaelwoerister@posteo> | 2017-11-14 19:52:49 +0100 |
| commit | 2c1aeddf272d9370f32dc13025bfb802270efd10 (patch) | |
| tree | 166d5ba1ced6bd956934ea5a26c2af554ec77d51 /src/tools/compiletest | |
| parent | 0b1438307e9357904ecb5603023414e554dbeb26 (diff) | |
| download | rust-2c1aeddf272d9370f32dc13025bfb802270efd10.tar.gz rust-2c1aeddf272d9370f32dc13025bfb802270efd10.zip | |
incr.comp.: Cache TypeckTables and add -Zincremental-queries flag.
Diffstat (limited to 'src/tools/compiletest')
| -rw-r--r-- | src/tools/compiletest/src/runtest.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/tools/compiletest/src/runtest.rs b/src/tools/compiletest/src/runtest.rs index 80ca0afe72b..8d94039c594 100644 --- a/src/tools/compiletest/src/runtest.rs +++ b/src/tools/compiletest/src/runtest.rs @@ -1387,6 +1387,7 @@ actual:\n\ if let Some(ref incremental_dir) = self.props.incremental_dir { rustc.args(&["-Z", &format!("incremental={}", incremental_dir.display())]); rustc.args(&["-Z", "incremental-verify-ich"]); + rustc.args(&["-Z", "incremental-queries"]); } match self.config.mode { @@ -2614,4 +2615,4 @@ fn read2_abbreviated(mut child: Child) -> io::Result<Output> { stdout: stdout.into_bytes(), stderr: stderr.into_bytes(), }) -} \ No newline at end of file +} |
