From 39fefdcf4b58dc8a77cb54450a22ba4849ac69f6 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 10 May 2016 18:06:35 +0200 Subject: update to kotlin 1.0.3-dev-700; don't use kotlin-for-upsource artifact, use regular kotlin-compiler and kotlin-ide-common instead --- core/src/test/kotlin/TestAPI.kt | 3 +++ 1 file changed, 3 insertions(+) (limited to 'core/src/test/kotlin') diff --git a/core/src/test/kotlin/TestAPI.kt b/core/src/test/kotlin/TestAPI.kt index b14e4aa9..ab2a526b 100644 --- a/core/src/test/kotlin/TestAPI.kt +++ b/core/src/test/kotlin/TestAPI.kt @@ -47,6 +47,9 @@ public fun verifyModel(vararg roots: ContentRoot, if (withKotlinRuntime) { val kotlinPairRoot = PathManager.getResourceRoot(Pair::class.java, "/kotlin/Pair.class") addClasspath(File(kotlinPairRoot)) + + val kotlinStrictfpRoot = PathManager.getResourceRoot(Strictfp::class.java, "/kotlin/jvm/Strictfp.class") + addClasspath(File(kotlinStrictfpRoot)) } addRoots(roots.toList()) } -- cgit