From 1530fbee1bed9d6c7f697e91755dec8de6fb5f5b Mon Sep 17 00:00:00 2001 From: Mikhael Bogdanov Date: Mon, 5 Feb 2018 11:31:14 +0100 Subject: [PATCH] Fix ir test execution --- compiler/tests-ir-jvm/build.gradle.kts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/compiler/tests-ir-jvm/build.gradle.kts b/compiler/tests-ir-jvm/build.gradle.kts index b55ec0b9486..42bfa906a2c 100644 --- a/compiler/tests-ir-jvm/build.gradle.kts +++ b/compiler/tests-ir-jvm/build.gradle.kts @@ -1,8 +1,11 @@ - apply { plugin("kotlin") } dependencies { + testRuntime(intellijDep()) testCompile(projectTests(":compiler:tests-common")) + testCompile(projectDist(":kotlin-script-runtime")) + testCompile(projectDist(":kotlin-stdlib")) + testCompile(projectDist(":kotlin-test:kotlin-test-jvm")) } sourceSets {