Fail if it was impossible to delete cache directory
For example it can be caused by open handler to file on Windows.
This commit is contained in:
@@ -106,7 +106,7 @@ public abstract class KotlinDebuggerTestCase extends DescriptorTestCase {
|
|||||||
if (LOCAL_CACHE_DIR.exists()) {
|
if (LOCAL_CACHE_DIR.exists()) {
|
||||||
if (isLocalCacheOutdated()) {
|
if (isLocalCacheOutdated()) {
|
||||||
System.out.println("-- Local caches outdated --");
|
System.out.println("-- Local caches outdated --");
|
||||||
FilesKt.deleteRecursively(LOCAL_CACHE_DIR);
|
Assert.assertTrue("Failed to delete local cache!", FilesKt.deleteRecursively(LOCAL_CACHE_DIR));
|
||||||
localCacheRebuild = true;
|
localCacheRebuild = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user