From 73836928ef40ea42cff948967859368c9703d1ab Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Wed, 17 Apr 2019 11:27:43 +0200 Subject: [PATCH] Minor. Update folder suffix Debug purpose --- .../test/IdeaSystemPropertiesForParallelRunConfigurator.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/tests-common/tests/org/jetbrains/kotlin/test/IdeaSystemPropertiesForParallelRunConfigurator.kt b/compiler/tests-common/tests/org/jetbrains/kotlin/test/IdeaSystemPropertiesForParallelRunConfigurator.kt index da45a1510f4..1e31b794fbc 100644 --- a/compiler/tests-common/tests/org/jetbrains/kotlin/test/IdeaSystemPropertiesForParallelRunConfigurator.kt +++ b/compiler/tests-common/tests/org/jetbrains/kotlin/test/IdeaSystemPropertiesForParallelRunConfigurator.kt @@ -15,7 +15,7 @@ object IdeaSystemPropertiesForParallelRunConfigurator { private val GRADLE_WORKER = System.getProperty("org.gradle.test.worker") ?: "" //TODO: try to remove folder on jvm shutdown (there are some flashing test with deleteOnExit = true) private val PROCESS_TMP_ROOT_FOLDER = - FileUtil.createTempDirectory(File(System.getProperty("java.io.tmpdir")), "testRoot", GRADLE_WORKER, false).path + FileUtil.createTempDirectory(File(System.getProperty("java.io.tmpdir")), "testRoot", "GW$GRADLE_WORKER", false).path private val IDEA_SYSTEM = FileUtil.createTempDirectory(File(PROCESS_TMP_ROOT_FOLDER), "idea-system", "", false).path private val IDEA_CONFIG = FileUtil.createTempDirectory(File(PROCESS_TMP_ROOT_FOLDER), "idea-config", "", false).path