Add a check that processors from KAPT classpath are not run

This commit adds check that javaslang.match.PatternsProcessor,
which is in kotlin-compiler-embeddable jar, is not run when using
JDK9+.
This commit is contained in:
Ivan Gavrilovic
2019-07-31 23:16:13 +09:00
committed by Yan Zhulanow
parent 27a9aa5e2b
commit d13e26d67e

View File

@@ -79,6 +79,8 @@ class Kapt3WorkersIT : Kapt3IT() {
project.build("build", options = options) {
assertSuccessful()
assertKaptSuccessful()
// Check added because of https://youtrack.jetbrains.com/issue/KT-33056.
assertNotContains("javaslang.match.PatternsProcessor")
}
}