From aecbe0e5f6095458a2346f5e94245aa679dd466f Mon Sep 17 00:00:00 2001 From: Svyatoslav Scherbina Date: Fri, 2 Dec 2016 11:50:07 +0700 Subject: [PATCH] backend/tests: do not check output in main_exception --- backend.native/tests/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index 75db75ef105..2fe5073f91c 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -622,7 +622,8 @@ task args0(type: RunKonanTest) { } task main_exception(type: RunKonanTest) { - goldValue = "Uncaught exception from Kotlin's main: Throwable\n" + // TODO: cannot currently check the output because the exact stacktrace strings are unpredictable. + // goldValue = "Uncaught exception from Kotlin's main: Throwable\n" source = "runtime/basic/main_exception.kt" }