summaryrefslogtreecommitdiff
path: root/server/src/versionstr.cc
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/versionstr.cc')
-rw-r--r--server/src/versionstr.cc15
1 files changed, 10 insertions, 5 deletions
diff --git a/server/src/versionstr.cc b/server/src/versionstr.cc
index c4f82c9..b906bdd 100644
--- a/server/src/versionstr.cc
+++ b/server/src/versionstr.cc
@@ -118,12 +118,18 @@ size_t VersionStr::patch() const
}
#ifdef TEST_VERSIONSTR
+//deps: log.cc exception.cc
+//cflags: -I..
+//libs:
+#include <test.h>
#include <set>
#include <vector>
-int main()
-{
+TEST_BEGIN;
+
+TEST_TRUE(false, "No tests yet!");
+/*
// Test normal constructor and string conversion
VersionStr v1("1.2.3");
printf("VersionStr: %s\n", ((std::string)v1).c_str());
@@ -202,8 +208,7 @@ int main()
if(((std::string)*i) != *j) return 1;
i++; j++;
}
-
- return 0;
-}
+*/
+TEST_END;
#endif/*TEST_VERSIONSTR*/