diff --git a/kotlin-native/runtime/src/main/cpp/ArraysTest.cpp b/kotlin-native/runtime/src/main/cpp/ArraysTest.cpp deleted file mode 100644 index 978ecdc5d73..00000000000 --- a/kotlin-native/runtime/src/main/cpp/ArraysTest.cpp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license - * that can be found in the LICENSE file. - */ - -#include "gtest/gtest.h" - -#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); -}