From 8d9e6f402ca656102bd5616778465bcfb85e60cc Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Thu, 6 Oct 2016 15:36:29 +0300 Subject: [PATCH] Enable using local caches by default for both TeamCity and local testing (cherry picked from commit b028efa) --- .../jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java b/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java index 6c2f9fc594a..ba9c18a0085 100644 --- a/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java +++ b/idea/tests/org/jetbrains/kotlin/idea/debugger/KotlinDebuggerTestCase.java @@ -73,7 +73,7 @@ public abstract class KotlinDebuggerTestCase extends DescriptorTestCase { // Caches are auto-invalidated when file modification in TINY_APP_SRC detected (through File.lastModified()). // LOCAL_CACHE_DIR removing can be used to force caches invalidating as well. - private static final boolean LOCAL_CACHE_REUSE = false; + private static final boolean LOCAL_CACHE_REUSE = true; private static final File LOCAL_CACHE_DIR = new File("out/debuggerTinyApp"); private static final File LOCAL_CACHE_JAR_DIR = new File(LOCAL_CACHE_DIR, "jar");