mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-06-18 11:24:01 +00:00
Remove remove_all. A compiler has no need for recursively deleting a directory.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@198955 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@ -40,7 +40,8 @@ TEST(LockFileManagerTest, Basic) {
|
||||
// Now that the lock is out of scope, the file should be gone.
|
||||
EXPECT_FALSE(sys::fs::exists(StringRef(LockedFile)));
|
||||
|
||||
sys::fs::remove_all(StringRef(TmpDir));
|
||||
EC = sys::fs::remove(StringRef(TmpDir));
|
||||
ASSERT_FALSE(EC);
|
||||
}
|
||||
|
||||
} // end anonymous namespace
|
||||
|
Reference in New Issue
Block a user