Skip to content

Commit

Permalink
Remove references to ./tmp in-tree
Browse files Browse the repository at this point in the history
These used to be used by codegen-units tests, but were switched from manually specifying directories
to just using `// incremental` in rust-lang#89101.
Remove the old references.
  • Loading branch information
jyn514 committed Jun 27, 2022
1 parent 0e1a6fb commit d16187c
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,6 @@ no_llvm_build
/unicode-downloads
/target
/src/tools/x/target
# Generated by compiletest for incremental
/tmp/
# Created by default with `src/ci/docker/run.sh`
/obj/

Expand Down
5 changes: 0 additions & 5 deletions src/tools/compiletest/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -351,11 +351,6 @@ pub fn opt_str2(maybestr: Option<String>) -> String {
}

pub fn run_tests(config: Config) {
// FIXME(#33435) Avoid spurious failures in codegen-units/partitioning tests.
if let Mode::CodegenUnits = config.mode {
let _ = fs::remove_dir_all("tmp/partitioning-tests");
}

// If we want to collect rustfix coverage information,
// we first make sure that the coverage file does not exist.
// It will be created later on.
Expand Down

0 comments on commit d16187c

Please sign in to comment.