summaryrefslogtreecommitdiff
path: root/server/src/macrolist.cc
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/macrolist.cc')
-rw-r--r--server/src/macrolist.cc17
1 files changed, 12 insertions, 5 deletions
diff --git a/server/src/macrolist.cc b/server/src/macrolist.cc
index 2ce4d0c..fc54ce9 100644
--- a/server/src/macrolist.cc
+++ b/server/src/macrolist.cc
@@ -61,11 +61,19 @@ void MacroList::addFile(std::string file)
}
#ifdef TEST_MACROLIST
+//deps: entitylist.cc exception.cc saxparser.cc debug.cc log.cc inotify.cc versionstr.cc mutex.cc macroheaderparser.cc
+//cflags: -I.. $(EXPAT_CFLAGS) $(PTHREAD_CFLAGS)
+//libs: $(EXPAT_LIBS) $(PTHREAD_LIBS)
+#include <test.h>
#define MACRODIR "/home" // We assume this directory exists and does not contain any xml files!
-int main()
-{
+TEST_BEGIN;
+
+// TODO: Put some testcode here (see test.h for usable macros).
+TEST_TRUE(false, "No tests yet!");
+
+/*
// Test sorting
MacroList lst(MACRODIR);
@@ -122,8 +130,7 @@ int main()
}
return 1;
onandon:
-
- return 0;
-}
+*/
+TEST_END;
#endif/*TEST_MACROLIST*/