Infrastructure: move compiler plugin tests back to their modules

This commit is contained in:
Yan Zhulanow
2017-10-16 20:20:57 +03:00
parent 7248f2568a
commit eccc3447f6
40 changed files with 113 additions and 106 deletions
+15 -1
View File
@@ -21,6 +21,12 @@ dependencies {
compile(commonDep("org.fusesource.jansi", "jansi"))
compile(commonDep("org.jline", "jline"))
compile(files("${System.getProperty("java.home")}/../lib/tools.jar"))
testCompile(project(":compiler:backend"))
testCompile(project(":compiler:cli"))
testCompile(project(":compiler:tests-common"))
testCompile(projectTests(":compiler:tests-common"))
testCompile(commonDep("junit:junit"))
}
sourceSets {
@@ -30,5 +36,13 @@ sourceSets {
"../builtins-serializer/src",
"../javac-wrapper/src")
}
"test" {}
"test" {
java.srcDirs("../../plugins/annotation-collector/test")
}
}
testsJar {}
projectTest {
workingDir = rootDir
}