blob: 5479647430e8621b02cc12116ab2c6466e53c465 [file] [log] [blame]
//===--- utils/unittest/UnitTestMain/TestMain.cpp -------------------------===//
//
// Copyright (c) 2014 Apple Inc. All rights reserved.
//
//===----------------------------------------------------------------------===//
#include "gtest/gtest.h"
int main(int argc, char **argv) {
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}