diff --git a/compiler/tests/org/jetbrains/kotlin/daemon/CompilerDaemonTest.kt b/compiler/tests/org/jetbrains/kotlin/daemon/CompilerDaemonTest.kt index 672aefed4ab..b439b7dd728 100644 --- a/compiler/tests/org/jetbrains/kotlin/daemon/CompilerDaemonTest.kt +++ b/compiler/tests/org/jetbrains/kotlin/daemon/CompilerDaemonTest.kt @@ -142,7 +142,8 @@ public class CompilerDaemonTest : KotlinIntegrationTestBase() { } public fun testDaemonInstancesSimple() { - val jar = tmpdir.absolutePath + File.separator + "hello1.jar" + val jar1 = tmpdir.absolutePath + File.separator + "hello1.jar" + val jar2 = tmpdir.absolutePath + File.separator + "hello2.jar" witFlagFile(getTestName(true), ".alive") { flagFile -> val daemonOptions = DaemonOptions(runFilesPath = File(tmpdir, getTestName(true)).absolutePath) val compilerId2 = CompilerId.makeCompilerId(compilerClassPath + @@ -163,13 +164,13 @@ public class CompilerDaemonTest : KotlinIntegrationTestBase() { TestCase.assertTrue(logFile1.length() == 0L && logFile2.length() == 0L) - val res1 = compileOnDaemon(flagFile, compilerId, daemonJVMOptions1, daemonOptions, "-include-runtime") + val res1 = compileOnDaemon(flagFile, compilerId, daemonJVMOptions1, daemonOptions, "-include-runtime", File(getHelloAppBaseDir(), "hello.kt").absolutePath, "-d", jar1) TestCase.assertEquals("first compilation failed:\n${res1.out}", 0, res1.resultCode) logFile1.assertLogContainsSequence("Starting compilation with args: ") TestCase.assertEquals("expecting '${logFile2.absolutePath}' to be empty", 0L, logFile2.length()) - val res2 = compileOnDaemon(flagFile, compilerId2, daemonJVMOptions2, daemonOptions, "-include-runtime") + val res2 = compileOnDaemon(flagFile, compilerId2, daemonJVMOptions2, daemonOptions, "-include-runtime", File(getHelloAppBaseDir(), "hello.kt").absolutePath, "-d", jar2) TestCase.assertEquals("second compilation failed:\n${res2.out}", 0, res1.resultCode) logFile2.assertLogContainsSequence("Starting compilation with args: ") @@ -212,6 +213,7 @@ public class CompilerDaemonTest : KotlinIntegrationTestBase() { } public fun testDaemonAutoshutdownOnIdle() { + val jar = tmpdir.absolutePath + File.separator + "hello1.jar" witFlagFile(getTestName(true), ".alive") { flagFile -> val daemonOptions = DaemonOptions(autoshutdownIdleSeconds = 1, runFilesPath = File(tmpdir, getTestName(true)).absolutePath) KotlinCompilerClient.shutdownCompileService(compilerId, daemonOptions) @@ -225,7 +227,7 @@ public class CompilerDaemonTest : KotlinIntegrationTestBase() { TestCase.assertNotNull("failed to connect daemon", daemon) daemon?.registerClient(flagFile.absolutePath) val strm = ByteArrayOutputStream() - val code = KotlinCompilerClient.compile(daemon!!, CompileService.NO_SESSION, CompileService.TargetPlatform.JVM, arrayOf("-include-runtime"), strm) + val code = KotlinCompilerClient.compile(daemon!!, CompileService.NO_SESSION, CompileService.TargetPlatform.JVM, arrayOf("-include-runtime", File(getHelloAppBaseDir(), "hello.kt").absolutePath, "-d", jar), strm) TestCase.assertEquals("compilation failed:\n${strm.toString()}", 0, code) logFile.assertLogContainsSequence("Starting compilation with args: ") diff --git a/compiler/tests/org/jetbrains/kotlin/daemon/LogCheckUtil.kt b/compiler/tests/org/jetbrains/kotlin/daemon/LogCheckUtil.kt index 7a77a318102..86a4220915b 100644 --- a/compiler/tests/org/jetbrains/kotlin/daemon/LogCheckUtil.kt +++ b/compiler/tests/org/jetbrains/kotlin/daemon/LogCheckUtil.kt @@ -22,14 +22,14 @@ import kotlin.text.Regex /** * holder of a [regex] and optional [matchCheck] for additional checks on match result */ -internal class LinePattern(val regex: Regex, val matchCheck: (MatchResult) -> Boolean = { true }) -internal fun LinePattern(regex: String, matchCheck: (MatchResult) -> Boolean = { true }) = LinePattern(regex.toRegex(), matchCheck) +class LinePattern(val regex: Regex, val matchCheck: (MatchResult) -> Boolean = { true }) +fun LinePattern(regex: String, matchCheck: (MatchResult) -> Boolean = { true }) = LinePattern(regex.toRegex(), matchCheck) /** * calls [body] if receiver does not contain complete sequence of lines matched by [patternsIter], separated by any number of other lines * [body] receives first unmatched pattern and index of last matched line in the sequence */ -internal fun Sequence.ifNotContainsSequence(patternsIter: Iterator, +fun Sequence.ifNotContainsSequence(patternsIter: Iterator, body: (LinePattern, Int) -> Unit) : Unit { class Accumulator(it: Iterator) { val iter = EndBoundIteratorWithValue(it) @@ -56,7 +56,7 @@ internal fun Sequence.ifNotContainsSequence(patternsIter: Iterator.ifNotContainsSequence(patterns: List, +fun Sequence.ifNotContainsSequence(patterns: List, body: (LinePattern, Int) -> Unit): Unit { ifNotContainsSequence(patterns.iterator(), body) } @@ -66,7 +66,7 @@ internal fun Sequence.ifNotContainsSequence(patterns: List, * calls [body] if receiver does not contain complete sequence of lines matched by [patterns], separated by any number of other lines * [body] receives first unmatched pattern and index of last matched line in the sequence */ -internal fun Sequence.ifNotContainsSequence(vararg patterns: LinePattern, +fun Sequence.ifNotContainsSequence(vararg patterns: LinePattern, body: (LinePattern, Int) -> Unit): Unit { ifNotContainsSequence(patterns.iterator(), body) }