summaryrefslogtreecommitdiff
path: root/testrunner.cc
diff options
context:
space:
mode:
Diffstat (limited to 'testrunner.cc')
-rw-r--r--testrunner.cc10
1 files changed, 10 insertions, 0 deletions
diff --git a/testrunner.cc b/testrunner.cc
new file mode 100644
index 0000000..40710fd
--- /dev/null
+++ b/testrunner.cc
@@ -0,0 +1,10 @@
+// Copyright 2015 The Chromium OS Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include <gtest/gtest.h>
+
+int main(int argc, char **argv) {
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}