Check whether test is ignored before reporting failure

This commit is contained in:
Georgy Bronnikov
2019-08-08 18:51:28 +03:00
parent 0089de7f7f
commit b9db4148cc
20 changed files with 79 additions and 40 deletions
@@ -40,6 +40,6 @@ abstract class AbstractAndroidBytecodeShapeTest : AbstractBytecodeTextTest() {
loadFileByFullPath(fileName)
val expected = readExpectedOccurrences(fileName)
val actual = generateToText()
checkGeneratedTextAgainstExpectedOccurrences(actual, expected, TargetBackend.ANY)
checkGeneratedTextAgainstExpectedOccurrences(actual, expected, TargetBackend.ANY, true)
}
}