Remove extensive testing of the discontinued jre7/8 artifacts
This commit is contained in:
@@ -25,11 +25,6 @@ sourceSets {
|
||||
test {
|
||||
kotlin {
|
||||
srcDir 'test'
|
||||
if(!System.properties.'idea.active') {
|
||||
srcDir '../jvm/test'
|
||||
srcDir '../common/test'
|
||||
srcDir '../test'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -74,20 +69,3 @@ compileTestKotlin {
|
||||
test {
|
||||
executable = "$JDK_17/bin/java"
|
||||
}
|
||||
|
||||
task testJre6Tests(type: Test) {
|
||||
dependsOn(':kotlin-stdlib:testClasses')
|
||||
group = "verification"
|
||||
|
||||
executable = "$JDK_17/bin/java"
|
||||
|
||||
doFirst {
|
||||
testClassesDirs = project(':kotlin-stdlib').sourceSets.test.output
|
||||
classpath = files(
|
||||
testClassesDirs,
|
||||
configurations.testCompile
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
check.dependsOn testJre6Tests
|
||||
@@ -27,12 +27,6 @@ sourceSets {
|
||||
test {
|
||||
kotlin {
|
||||
srcDir 'test'
|
||||
if(!System.properties.'idea.active') {
|
||||
srcDir '../jvm/test'
|
||||
srcDir '../common/test'
|
||||
srcDir '../test'
|
||||
srcDir '../jre7/test'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -77,21 +71,3 @@ compileTestKotlin {
|
||||
test {
|
||||
executable = "$JDK_18/bin/java"
|
||||
}
|
||||
|
||||
|
||||
task testJre6Tests(type: Test) {
|
||||
dependsOn(':kotlin-stdlib:testClasses')
|
||||
group = "verification"
|
||||
|
||||
executable = "$JDK_18/bin/java"
|
||||
|
||||
doFirst {
|
||||
testClassesDirs = project(':kotlin-stdlib').sourceSets.test.output
|
||||
classpath = files(
|
||||
testClassesDirs,
|
||||
configurations.testCompile
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
check.dependsOn testJre6Tests
|
||||
Reference in New Issue
Block a user