mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-16 21:15:18 +03:00
507414daf9
The new glob tests created tmp/glob-tests as a directory, but the never removed it. The `make clean` target then attempted to `rm -f` on this, but it couldn't remove the directory. This both changes the clean target to `rm -rf` tmp files, and also alters the tests to delete the directory that all the files are added into.