Tests: Exclude tests failing in the two-stage mode due to KT-33267

This commit is contained in:
Ilya Matveev
2019-08-12 15:21:09 +07:00
committed by Ilya Matveev
parent 0dd65bbeaf
commit 2297b52596
+4 -1
View File
@@ -248,7 +248,10 @@ boolean isExcluded(String dir) {
def excluded = [ "codegen/box/functions/bigArity" /* KT-26140 */ ]
if (project.twoStageEnabled) {
excluded += ["codegen/box/closures/captureInSuperConstructorCall", "codegen/box/enum"] // KT-33207.
excluded += [
"codegen/box/closures/captureInSuperConstructorCall", "codegen/box/enum", // KT-33207.
"codegen/box/objects" // KT-33267.
]
}
boolean result = false