Add test for consistency check between the Kotlin specification and spec tests
This commit is contained in:
@@ -9,6 +9,7 @@ dependencies {
|
||||
testCompileOnly(intellijCoreDep()) { includeJars("intellij-core") }
|
||||
testRuntimeOnly(intellijPluginDep("java"))
|
||||
}
|
||||
compile("org.jsoup:jsoup:1.10.3")
|
||||
}
|
||||
|
||||
sourceSets {
|
||||
@@ -45,3 +46,11 @@ val remoteRunTests by task<Test> {
|
||||
includeTests.forEach { includeTestsMatching(packagePrefix + it) }
|
||||
}
|
||||
}
|
||||
|
||||
val specConsistencyTests by task<Test> {
|
||||
workingDir = rootDir
|
||||
|
||||
filter {
|
||||
includeTestsMatching("org.jetbrains.kotlin.spec.consistency.SpecTestsConsistencyTest")
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user