From 50c6ae8c0461f12bc42d2d8a0344efd7dc186f2c Mon Sep 17 00:00:00 2001 From: Pixel Date: Fri, 7 Oct 2011 15:59:37 -0700 Subject: Adding 'Sanity' test software, simplified Makefile, and turned 64 bits file offsets. --- tests/test-Sanity.cc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tests/test-Sanity.cc (limited to 'tests') 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 + +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; +} -- cgit v1.2.3