You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: libraries/tools/kotlin-gradle-plugin-integration-tests/src/test/kotlin/org/jetbrains/kotlin/gradle/experimental/TryK2IT.kt
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -87,8 +87,8 @@ class TryK2IT : KGPBaseTest() {
87
87
assertOutputContains(
88
88
"""
89
89
|##### 'kotlin.experimental.tryK2' results #####
90
-
|:lib:compileKotlin: 2.0 language version
91
90
|:app:compileKotlin: 2.0 language version
91
+
|:lib:compileKotlin: 2.0 language version
92
92
|##### 100% (2/2) tasks have been compiled with Kotlin 2.0 #####
93
93
""".trimMargin().normalizeLineEndings()
94
94
)
@@ -112,13 +112,13 @@ class TryK2IT : KGPBaseTest() {
112
112
"""
113
113
|##### 'kotlin.experimental.tryK2' results #####
114
114
|:compileCommonMainKotlinMetadata: 2.0 language version
115
-
|:compileNativeMainKotlinMetadata: 2.0 language version
116
115
|:compileKotlinLinuxX64: 2.0 language version${
117
116
if (HostManager.hostIsMac)
118
117
"\n|:compileKotlinMacosArm64: 2.0 language version\n|:compileKotlinMacosX64: 2.0 language version"
119
118
else""
120
119
}
121
120
|:compileKotlinMingwX64: 2.0 language version
121
+
|:compileNativeMainKotlinMetadata: 2.0 language version
122
122
|##### 100% ${if (HostManager.hostIsMac) "(6/6)"else"(4/4)"} tasks have been compiled with Kotlin 2.0 #####
123
123
""".trimMargin().normalizeLineEndings()
124
124
)
@@ -148,8 +148,8 @@ class TryK2IT : KGPBaseTest() {
148
148
assertOutputContains(
149
149
"""
150
150
|##### 'kotlin.experimental.tryK2' results #####
151
-
|:lib:compileKotlin: 2.0 language version
152
151
|:app:compileKotlin: 2.0 language version
152
+
|:lib:compileKotlin: 2.0 language version
153
153
|##### 100% (2/2) tasks have been compiled with Kotlin 2.0 #####
154
154
""".trimMargin().normalizeLineEndings()
155
155
)
@@ -294,8 +294,8 @@ class TryK2IT : KGPBaseTest() {
294
294
|##### 'kotlin.experimental.tryK2' results #####
295
295
|:compileKotlinJs: 2.0 language version
296
296
|:compileProductionExecutableKotlinJs: 2.0 language version
297
-
|:compileTestKotlinJs: 2.0 language version
298
297
|:compileTestDevelopmentExecutableKotlinJs: 2.0 language version
298
+
|:compileTestKotlinJs: 2.0 language version
299
299
|##### 100% (4/4) tasks have been compiled with Kotlin 2.0 #####
Copy file name to clipboardExpand all lines: libraries/tools/kotlin-gradle-plugin/src/common/kotlin/org/jetbrains/kotlin/gradle/report/BuildReportsService.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -280,7 +280,7 @@ class BuildReportsService {
280
280
}
281
281
val taskWithK2Percent = (tasksCountWithKotlin2 *100) / tasksData.count()
282
282
val statsData = tasksData.map { it.path to it.kotlinLanguageVersion?.version }
283
-
statsData.forEach { record ->
283
+
statsData.sortedBy { it.first }.forEach { record ->
284
284
log.warn("${record.first}: ${record.second} language version")
0 commit comments