aboutsummaryrefslogtreecommitdiffstats
path: root/storage/src/tests/testrunner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'storage/src/tests/testrunner.cpp')
-rw-r--r--storage/src/tests/testrunner.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/storage/src/tests/testrunner.cpp b/storage/src/tests/testrunner.cpp
new file mode 100644
index 00000000000..5d8dc8d4c1f
--- /dev/null
+++ b/storage/src/tests/testrunner.cpp
@@ -0,0 +1,15 @@
+// Copyright 2016 Yahoo Inc. Licensed under the terms of the Apache 2.0 license. See LICENSE in the project root.
+
+#include <vespa/fastos/fastos.h>
+#include <iostream>
+#include <vespa/log/log.h>
+#include <vespa/vdstestlib/cppunit/cppunittestrunner.h>
+
+LOG_SETUP("storagecppunittests");
+
+int
+main(int argc, char **argv)
+{
+ vdstestlib::CppUnitTestRunner testRunner;
+ return testRunner.run(argc, argv);
+}