summaryrefslogtreecommitdiffstats
path: root/messagebus/src/apps/printversion/printversion.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'messagebus/src/apps/printversion/printversion.cpp')
-rw-r--r--messagebus/src/apps/printversion/printversion.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/messagebus/src/apps/printversion/printversion.cpp b/messagebus/src/apps/printversion/printversion.cpp
new file mode 100644
index 00000000000..8401653fc51
--- /dev/null
+++ b/messagebus/src/apps/printversion/printversion.cpp
@@ -0,0 +1,19 @@
+// 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/messagebus/vtag.h>
+#include <stdio.h>
+#include <vespa/vespalib/component/version.h>
+
+int main(int, char **)
+{
+ printf("version tag: %s\n", mbus::VersionTag);
+ printf("version tag date: %s\n", mbus::VersionTagDate);
+ printf("version tag system: %s\n", mbus::VersionTagSystem);
+ printf("version tag system rev: %s\n", mbus::VersionTagSystemRev);
+ printf("version tag builder: %s\n", mbus::VersionTagBuilder);
+ printf("nice version:\n\t");
+ mbus::Vtag::printVersionNice();
+ printf("\n");
+ printf("currentVersion object: %s\n", mbus::Vtag::currentVersion.toString().c_str());
+ return 0;
+}