diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-08-10 15:27:34 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-10 15:27:34 +0200 |
| commit | 219336a06c674aadae2d7db56d4e73ddfc6c5749 (patch) | |
| tree | 47fa08c5c9ec5534b51e13601b11b8de98069517 | |
| parent | ad8b0a0b8f44e1ed40c81a5b878b7c7829c37de4 (diff) | |
| parent | 83b837a7f911ea56ca3c466a43a7c3958eb24b13 (diff) | |
| download | rust-219336a06c674aadae2d7db56d4e73ddfc6c5749.tar.gz rust-219336a06c674aadae2d7db56d4e73ddfc6c5749.zip | |
Rollup merge of #63429 - rust-lang:gitignore-readd-tmp, r=Mark-Simulacrum
.gitignore: Readd `/tmp/` Specifically, `/tmp/partitioning-tests/` it is generated by the incremental tests, https://github.com/rust-lang/rust/search?p=2&q=partitioning-tests&unscoped_q=partitioning-tests. These are cleaned up by compiletest but not if you kill testing prematurely (which I just did to test out a rollup, and it is annoying to `rm -rf tmp/`). r? @Mark-Simulacrum cc @RalfJung
| -rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index a0b491f4278..81a472451d7 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ __pycache__/ /inst/ /llvm/ /mingw-build/ +# Created by default with `src/ci/docker/run.sh`: /obj/ /rustllvm/ /src/libcore/unicode/DerivedCoreProperties.txt @@ -38,6 +39,8 @@ __pycache__/ /src/libcore/unicode/UnicodeData.txt /src/libcore/unicode/downloaded /target/ +# Generated by compiletest for incremental: +/tmp/ tags tags.* TAGS |
