Minor: IGNORE_BACKEND: ANY_FIR -> IGNORE_BACKEND_FIR: ANY

for consistency with blackbox tests.
This commit is contained in:
pyos
2019-12-19 12:25:21 +01:00
committed by Dmitry Petrov
parent 38a3797325
commit 26822a0cde
6 changed files with 41 additions and 43 deletions
@@ -587,9 +587,13 @@ fun main(args: Array<String>) {
}
}
testGroup("compiler/fir/fir2ir/tests", "compiler/testData") {
testGroup(
"compiler/fir/fir2ir/tests", "compiler/testData",
testRunnerMethodName = "runTestWithCustomIgnoreDirective",
additionalRunnerArguments = listOf("\"// IGNORE_BACKEND_FIR: \"")
) {
testClass<AbstractFir2IrTextTest> {
model("ir/irText", targetBackend = TargetBackend.ANY_FIR)
model("ir/irText")
}
}