From fd1f9f2d67a52feb2fc3342aaba51ca838af4967 Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Fri, 11 Sep 2015 15:30:17 +0200 Subject: [PATCH] Fixing run filename compatibility with windows, improving diagnostics, some minor tweaks Original commit: 8b970cd186e96e0051ca3f33eb11438ab2da9e4a --- .../org/jetbrains/kotlin/jps/build/SimpleKotlinJpsBuildTest.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/jps/jps-plugin/test/org/jetbrains/kotlin/jps/build/SimpleKotlinJpsBuildTest.kt b/jps/jps-plugin/test/org/jetbrains/kotlin/jps/build/SimpleKotlinJpsBuildTest.kt index 591da70fc26..3870a842b98 100644 --- a/jps/jps-plugin/test/org/jetbrains/kotlin/jps/build/SimpleKotlinJpsBuildTest.kt +++ b/jps/jps-plugin/test/org/jetbrains/kotlin/jps/build/SimpleKotlinJpsBuildTest.kt @@ -112,7 +112,8 @@ public class SimpleKotlinJpsBuildTest : AbstractKotlinJpsBuildTestCase() { public fun testThreeModulesNoReexportWithDaemon() { System.setProperty(COMPILE_DAEMON_ENABLED_PROPERTY,"") System.setProperty(COMPILE_DAEMON_VERBOSE_REPORT_PROPERTY, "") - val flagFile = File.createTempFile("kotlin-jps-tests-", "-is-running"); + // spaces in the name to test proper file name handling + val flagFile = File.createTempFile("kotlin-jps - tests-", "-is-running"); try { System.setProperty(COMPILE_DAEMON_CLIENT_ALIVE_PATH_PROPERTY, flagFile.absolutePath) testThreeModulesNoReexport()