[stdlib-mpp] Change path to the new stdlib artifact in BCV and JdkApi tests

KT-56106
This commit is contained in:
Ilya Gorbunov
2023-05-15 21:21:28 +02:00
committed by Space Team
parent 12c314cfa4
commit cfa6c39015
2 changed files with 3 additions and 2 deletions
@@ -20,7 +20,7 @@ class RuntimePublicAPITest {
val testName = TestName() val testName = TestName()
@Test fun kotlinStdlibRuntimeMerged() { @Test fun kotlinStdlibRuntimeMerged() {
snapshotAPIAndCompare("../../stdlib/jvm/build/libs", "kotlin-stdlib", listOf("kotlin.jvm.internal")) snapshotAPIAndCompare("../../stdlib/build/libs", "kotlin-stdlib", listOf("kotlin.jvm.internal"))
} }
@Test fun kotlinStdlibJdk7() { @Test fun kotlinStdlibJdk7() {
@@ -17,9 +17,10 @@ class JdkApiUsageTest {
@Test @Test
fun kotlinReflect() { fun kotlinReflect() {
testApiUsage( testApiUsage(
// TODO: try to pass these paths from Gradle
// Do not use the final jar artifact. It's shrunk by proguard. // Do not use the final jar artifact. It's shrunk by proguard.
jarArtifact("../../reflect/build/libs", "kotlin-reflect", "shadow"), jarArtifact("../../reflect/build/libs", "kotlin-reflect", "shadow"),
dependencies = listOf(jarArtifact("../../stdlib/jvm/build/libs", "kotlin-stdlib")) dependencies = listOf(jarArtifact("../../stdlib/build/libs", "kotlin-stdlib"))
) )
} }