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 e75be40736a..3db5d697135 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 @@ -616,10 +616,11 @@ abstract class AbstractIncrementalJpsTest( private fun createMappingsDump( project: ProjectDescriptor, kotlinContext: KotlinCompileContext, - lookupsDuringTest: Set -) = createKotlinCachesDump(project, kotlinContext, lookupsDuringTest) + "\n\n\n" + - createCommonMappingsDump(project) + "\n\n\n" + - createJavaMappingsDump(project) + lookupsDuringTest: Set, +) = if (System.getProperty("jps.use.dependency.graph", "false").toBoolean()) "" else + createKotlinCachesDump(project, kotlinContext, lookupsDuringTest) + "\n\n\n" + + createCommonMappingsDump(project) + "\n\n\n" + + createJavaMappingsDump(project) internal fun createKotlinCachesDump( project: ProjectDescriptor,