We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5c42e69 commit 3001626Copy full SHA for 3001626
src/tools/compiletest/src/main.rs
@@ -261,6 +261,11 @@ pub fn run_tests(config: &Config) {
261
_ => { /* proceed */ }
262
}
263
264
+ // FIXME(#33435) Avoid spurious failures in codegen-units/partitioning tests.
265
+ if let Mode::CodegenUnits = config.mode {
266
+ let _ = fs::remove_dir_all("tmp/partitioning-tests");
267
+ }
268
+
269
let opts = test_opts(config);
270
let tests = make_tests(config);
271
// sadly osx needs some file descriptor limits raised for running tests in
0 commit comments