summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-10-07 09:27:04 -0700
committerPixel <pixel@nobis-crew.org>2011-10-07 09:28:53 -0700
commit5a283e5b2b523d53e3504292c386b534dc74386a (patch)
tree779a2f275fd68db81e5927c6b2c190782e6f11f8 /tests
parentad4fddc454407fe154e87564472332e5c421452a (diff)
Preliminary work for the Task manager.
Added libcoro submodule. Also refactored some pieces of code.
Diffstat (limited to 'tests')
-rw-r--r--tests/test-Tasks.cc13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/test-Tasks.cc b/tests/test-Tasks.cc
new file mode 100644
index 0000000..bb7c795
--- /dev/null
+++ b/tests/test-Tasks.cc
@@ -0,0 +1,13 @@
+#include <Main.h>
+#include <Task.h>
+#include <TaskMan.h>
+
+BALAU_STARTUP;
+
+using namespace Balau;
+
+int Application::startup() throw (Balau::GeneralException) {
+ Printer::log(M_STATUS, "Test::Tasks running.");
+ Printer::log(M_STATUS, "Test::Tasks passed.");
+ return 0;
+}