Skip to content

Commit 66d120c

Browse files
committedMar 21, 2018
Revert "remove FIXME(#33435) and remove the spurious failures counter measure"
This reverts commit be73a1f.
1 parent d5b55c1 commit 66d120c

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed
 

‎src/tools/compiletest/src/main.rs

+5
Original file line numberDiff line numberDiff line change
@@ -452,6 +452,11 @@ pub fn run_tests(config: &Config) {
452452
_ => { /* proceed */ }
453453
}
454454

455+
// FIXME(#33435) Avoid spurious failures in codegen-units/partitioning tests.
456+
if let Mode::CodegenUnits = config.mode {
457+
let _ = fs::remove_dir_all("tmp/partitioning-tests");
458+
}
459+
455460
let opts = test_opts(config);
456461
let tests = make_tests(config);
457462
// sadly osx needs some file descriptor limits raised for running tests in

0 commit comments

Comments
 (0)
Please sign in to comment.