AnalysisHandlerExtensionTest: set output dir for JVM

This commit is contained in:
Ting-Yuan Huang
2021-03-28 21:15:52 -07:00
committed by TeamCityServer
parent 0dee48781c
commit 17ba350868
@@ -58,7 +58,7 @@ class AnalysisHandlerExtensionTest : TestCaseWithTmpdir() {
}
fun testShouldNotGenerateCodeJVM() {
runTest(K2JVMCompiler(), classNotFound)
runTest(K2JVMCompiler(), classNotFound, listOf("-d", tmpdir.resolve("out").absolutePath))
}
fun testShouldNotGenerateCodeJS() {
@@ -70,7 +70,7 @@ class AnalysisHandlerExtensionTest : TestCaseWithTmpdir() {
}
fun testRepeatedAnalysisJVM() {
runTest(K2JVMCompiler(), repeatedAnalysis)
runTest(K2JVMCompiler(), repeatedAnalysis, listOf("-d", tmpdir.resolve("out").absolutePath))
}
fun testRepeatedAnalysisJS() {