summaryrefslogtreecommitdiffstats
path: root/messagebus_test/src/tests/compile-cpp/compile-cpp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'messagebus_test/src/tests/compile-cpp/compile-cpp.cpp')
-rw-r--r--messagebus_test/src/tests/compile-cpp/compile-cpp.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/messagebus_test/src/tests/compile-cpp/compile-cpp.cpp b/messagebus_test/src/tests/compile-cpp/compile-cpp.cpp
new file mode 100644
index 00000000000..e15b57859b7
--- /dev/null
+++ b/messagebus_test/src/tests/compile-cpp/compile-cpp.cpp
@@ -0,0 +1,16 @@
+// 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 <vespa/log/log.h>
+LOG_SETUP("compile-cpp_test");
+#include <vespa/vespalib/testkit/testapp.h>
+#include <vespa/messagebus/routing/route.h>
+
+TEST_SETUP(Test);
+
+int
+Test::Main()
+{
+ TEST_INIT("compile-cpp_test");
+ mbus::Route r;
+ TEST_DONE();
+}