Put kotlin-stdlib-jdk7/8 output in test classpath when running jdk6 tests

These tests ensure how compiled jdk6 binaries work in newer JDK7/8 environment,
and most likely the stdlib-jdk7/8 artifacts will be in that environment.

This reverts test classpath change (accidentally?) made in the commit 99f2cc3d.
This commit is contained in:
Ilya Gorbunov
2019-03-27 05:58:23 +03:00
parent 3724e05b63
commit e6e00483d4
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -101,7 +101,7 @@ task testJdk6Tests(type: Test) {
testClassesDirs = project(':kotlin-stdlib').sourceSets.test.output
classpath = files(
testClassesDirs,
configurations.testCompile
sourceSets.test.compileClasspath
)
}
}
+1 -1
View File
@@ -105,7 +105,7 @@ task testJdk6Tests(type: Test) { thisTask ->
testClassesDirs = project(':kotlin-stdlib').sourceSets.test.output
classpath = files(
testClassesDirs,
configurations.testCompile
sourceSets.test.compileClasspath
)
}
}