summaryrefslogtreecommitdiff
path: root/tests/test-Sanity.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test-Sanity.cc')
-rw-r--r--tests/test-Sanity.cc14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/test-Sanity.cc b/tests/test-Sanity.cc
new file mode 100644
index 0000000..1495f76
--- /dev/null
+++ b/tests/test-Sanity.cc
@@ -0,0 +1,14 @@
+#include <Main.h>
+
+BALAU_STARTUP;
+
+using namespace Balau;
+
+int Application::startup() throw (Balau::GeneralException) {
+ Printer::log(M_STATUS, "Test::Sanity running.");
+
+ Assert(sizeof(off_t) == 8);
+
+ Printer::log(M_STATUS, "Test::Sanity passed.");
+ return 0;
+}