[Runtime testing] Disable the bad trial test to make TeamCity build green
This commit is contained in:
committed by
Ilya Matveev
parent
46210be959
commit
250262d8a7
@@ -7,12 +7,15 @@
|
|||||||
|
|
||||||
#include "Porting.h"
|
#include "Porting.h"
|
||||||
|
|
||||||
|
// TODO: Replace these tests with real ones.
|
||||||
|
|
||||||
TEST(ArraysTest, GoodTest) {
|
TEST(ArraysTest, GoodTest) {
|
||||||
konan::consolePrintf("I'm a good test\n");
|
konan::consolePrintf("I'm a good test\n");
|
||||||
EXPECT_EQ(true, true);
|
EXPECT_EQ(true, true);
|
||||||
}
|
}
|
||||||
|
|
||||||
TEST(ArraysTest, BadTest) {
|
TEST(ArraysTest, BadTest) {
|
||||||
|
GTEST_SKIP();
|
||||||
konan::consolePrintf("I'm a bad test\n");
|
konan::consolePrintf("I'm a bad test\n");
|
||||||
EXPECT_EQ(true, false);
|
EXPECT_EQ(true, false);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user