summaryrefslogtreecommitdiffstats
path: root/storageapi/src/tests/gtest_runner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'storageapi/src/tests/gtest_runner.cpp')
-rw-r--r--storageapi/src/tests/gtest_runner.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/storageapi/src/tests/gtest_runner.cpp b/storageapi/src/tests/gtest_runner.cpp
new file mode 100644
index 00000000000..c37be7231ac
--- /dev/null
+++ b/storageapi/src/tests/gtest_runner.cpp
@@ -0,0 +1,14 @@
+// Copyright 2019 Oath Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#include <gtest/gtest.h>
+
+#include <vespa/log/log.h>
+LOG_SETUP("storageapi_gtest_runner");
+
+int
+main(int argc, char* argv[])
+{
+ ::testing::InitGoogleTest(&argc, argv);
+ return RUN_ALL_TESTS();
+}
+