We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a04b4b6 commit d21434cCopy full SHA for d21434c
src/compiletest/runtest.rs
@@ -1520,7 +1520,8 @@ fn output_testname(filepath: &Path) -> PathBuf {
1520
1521
fn output_base_name(config: &Config, testpaths: &TestPaths) -> PathBuf {
1522
let dir = config.build_base.join(&testpaths.relative_dir);
1523
- fs::create_dir_all(&dir).unwrap();
+
1524
+ // Note: The directory `dir` is created during `collect_tests_from_dir`
1525
dir
1526
.join(&output_testname(&testpaths.file))
1527
.with_extension(&config.stage_id)
0 commit comments