[Runtime testing] Disable the bad trial test to make TeamCity build green

This commit is contained in:
Ilya Matveev
2020-09-22 15:14:05 +07:00
committed by Ilya Matveev
parent 46210be959
commit 250262d8a7
+3
View File
@@ -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);
}