From c57bf1a10b62fdb00b05f36d62b704c44818ba27 Mon Sep 17 00:00:00 2001 From: Pavel Punegov Date: Thu, 20 Sep 2018 20:52:15 +0300 Subject: [PATCH] Ignore incorrect stdlib tests --- backend.native/tests/build.gradle | 2 ++ 1 file changed, 2 insertions(+) diff --git a/backend.native/tests/build.gradle b/backend.native/tests/build.gradle index c93fd68a8df..2f28a25912f 100644 --- a/backend.native/tests/build.gradle +++ b/backend.native/tests/build.gradle @@ -119,6 +119,7 @@ def update_external_tests() { into(externalStdlibTestsDir) include 'stdlib/common/**' include 'stdlib/test/**' + exclude 'stdlib/test/js/**' } } } @@ -3008,6 +3009,7 @@ task runStdlibTests(type: RunStdlibTest) { // runs all tests and hence source name should be not null source = "stdlib_external/utils.kt" useFilter = false + arguments = [ "--ktest_negative_regex_filter=test.collections.CollectionTest.abstractCollectionToArray" ] runnerLogger = RunKonanTest.Logger.GTEST }