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); }