diff --git a/jps/jps-plugin/jps-tests/test/org/jetbrains/kotlin/jps/build/AbstractIncrementalJpsTest.kt b/jps/jps-plugin/jps-tests/test/org/jetbrains/kotlin/jps/build/AbstractIncrementalJpsTest.kt index 97a22d724d9..e75be40736a 100644 --- a/jps/jps-plugin/jps-tests/test/org/jetbrains/kotlin/jps/build/AbstractIncrementalJpsTest.kt +++ b/jps/jps-plugin/jps-tests/test/org/jetbrains/kotlin/jps/build/AbstractIncrementalJpsTest.kt @@ -457,6 +457,9 @@ abstract class AbstractIncrementalJpsTest( val kotlinFacetSettings = module.kotlinFacetSettings if (kotlinFacetSettings != null) { val compilerArguments = kotlinFacetSettings.compilerArguments + if(compilerArguments != null) { + updateCommandLineArguments(compilerArguments) + } if (compilerArguments is K2MetadataCompilerArguments) { val out = getAbsolutePath("${module.name}/out") File(out).mkdirs()