Skip to content

Commit

Permalink
Fix since kotlin test againg
Browse files Browse the repository at this point in the history
  • Loading branch information
vmishenev committed Oct 19, 2023
1 parent 4801b39 commit a83f4ba
Showing 1 changed file with 9 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -128,18 +128,22 @@ class SinceKotlinTest : AbstractRenderingTest() {
sourceSet {
sourceRoots = listOf("src/native/")
analysisPlatform = "native"
name = "native"
}
sourceSet {
sourceRoots = listOf("src/common/")
analysisPlatform = "common"
name = "common"
}
sourceSet {
sourceRoots = listOf("src/js/")
analysisPlatform = "js"
name = "js"
}
sourceSet {
sourceRoots = listOf("src/wasm/")
analysisPlatform = "wasm"
name = "wasm"
}
}
}
Expand Down Expand Up @@ -213,20 +217,24 @@ class SinceKotlinTest : AbstractRenderingTest() {
sourceSet {
sourceRoots = listOf("src/native/")
analysisPlatform = "native"
name = "native"
}
sourceSet {
sourceRoots = listOf("src/common/")
classpath = listOfNotNull(commonStdlibPath)
analysisPlatform = "common"
name = "common"
}
sourceSet {
sourceRoots = listOf("src/js/")
classpath = listOfNotNull(jsStdlibPath)
analysisPlatform = "js"
name = "js"
}
sourceSet {
sourceRoots = listOf("src/wasm/")
analysisPlatform = "wasm"
name = "wasm"
}
}
}
Expand Down Expand Up @@ -279,7 +287,7 @@ class SinceKotlinTest : AbstractRenderingTest() {
.children.filter { it.name == "ring" && it is DFunction } as List<DFunction>
with(funcs) {
val sinceKotlin = mapOf(
// Platform.common to SinceKotlinVersion("1.3"),
Platform.common to SinceKotlinVersion("1.3"),
Platform.jvm to SinceKotlinVersion("1.3"),
Platform.js to SinceKotlinVersion("1.3"),
Platform.native to SinceKotlinVersion("1.3"),
Expand Down

0 comments on commit a83f4ba

Please sign in to comment.