From 250262d8a74068e71857d8a492b883ffdc7f9d36 Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Tue, 22 Sep 2020 15:14:05 +0700 Subject: [PATCH] [Runtime testing] Disable the bad trial test to make TeamCity build green --- runtime/src/main/cpp/ArraysTest.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/runtime/src/main/cpp/ArraysTest.cpp b/runtime/src/main/cpp/ArraysTest.cpp index e4f07ade66b..978ecdc5d73 100644 --- a/runtime/src/main/cpp/ArraysTest.cpp +++ b/runtime/src/main/cpp/ArraysTest.cpp @@ -7,12 +7,15 @@ #include "Porting.h" +// TODO: Replace these tests with real ones. + TEST(ArraysTest, GoodTest) { konan::consolePrintf("I'm a good test\n"); EXPECT_EQ(true, true); } TEST(ArraysTest, BadTest) { + GTEST_SKIP(); konan::consolePrintf("I'm a bad test\n"); EXPECT_EQ(true, false); }