[FIR] Disable failing blackbox codegen tests for FIR.

This commit is contained in:
Mark Punzalan
2019-11-18 14:35:02 -08:00
committed by Mikhail Glukhikh
parent fc9ccafb84
commit 9df2f69f09
4019 changed files with 4042 additions and 22 deletions
+5 -3
View File
@@ -1,7 +1,9 @@
// IGNORE_BACKEND_FIR: JVM_IR
// TARGET_BACKEND: JVM
// WITH_RUNTIME
// FULL_JDK
package test
fun testProperLineNumber(): String {
var exceptionCount = 0;
try {
@@ -11,7 +13,7 @@ fun testProperLineNumber(): String {
catch(e: AssertionError) {
val entry = (e as java.lang.Throwable).getStackTrace()!!.get(1)
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("infixCalls.kt:8" != actual) {
if ("infixCalls.kt:10" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++
@@ -24,7 +26,7 @@ fun testProperLineNumber(): String {
catch(e: AssertionError) {
val entry = e.stackTrace!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("infixCalls.kt:21" != actual) {
if ("infixCalls.kt:23" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++
@@ -36,7 +38,7 @@ fun testProperLineNumber(): String {
catch(e: AssertionError) {
val entry = e.stackTrace!![1]
val actual = "${entry.getFileName()}:${entry.getLineNumber()}"
if ("infixCalls.kt:34" != actual) {
if ("infixCalls.kt:36" != actual) {
return "fail 1: ${actual}"
}
exceptionCount++