Skip to content

Commit 088696b

Browse files
committed
Fix problems left in concurrent_recursive_mkdir
Increase lifetime of `tmpdir`, and really change the length of test path.
1 parent b5d590b commit 088696b

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

src/libstd/fs.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -2283,9 +2283,10 @@ mod tests {
22832283

22842284
#[test]
22852285
fn concurrent_recursive_mkdir() {
2286-
for _ in 0..50 {
2287-
let mut dir = tmpdir().join("a");
2288-
for _ in 0..100 {
2286+
for _ in 0..100 {
2287+
let dir = tmpdir();
2288+
let mut dir = dir.join("a");
2289+
for _ in 0..40 {
22892290
dir = dir.join("a");
22902291
}
22912292
let mut join = vec!();

0 commit comments

Comments
 (0)