[Gradle] Update testHmppTasksAreNotIncludedInGradleConfigurationCache

Generate PSM and K/Native tasks support Configuration Cache now
This commit is contained in:
Anton Lakotka
2022-06-14 14:32:55 +02:00
committed by Space
parent becdb84bbb
commit 4511c7faa9
@@ -731,16 +731,13 @@ class HierarchicalMppIT : KGPBaseTest() {
val configCacheIncompatibleTasks = listOf(
":generateProjectStructureMetadata",
":transformCommonMainDependenciesMetadata",
":cinteropFooLinuxX64",
":compileKotlinLinuxX64",
":linkDebugSharedLinuxX64",
)
build("clean", "assemble", buildOptions = options) {
assertTasksExecuted(configCacheIncompatibleTasks)
configCacheIncompatibleTasks.forEach { task ->
assertOutputContains(
"""Task `:$task` of type `.+`: .+(at execution time is unsupported)|(not supported with the configuration cache)"""
"""Task `$task` of type `.+`: .+(at execution time is unsupported)|(not supported with the configuration cache)"""
.toRegex()
)
}