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.cc8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/test-Sanity.cc b/tests/test-Sanity.cc
index 9ed9b4e..22120ab 100644
--- a/tests/test-Sanity.cc
+++ b/tests/test-Sanity.cc
@@ -1,15 +1,13 @@
#include <Main.h>
-BALAU_STARTUP;
-
using namespace Balau;
void MainTask::Do() {
Printer::log(M_STATUS, "Test::Sanity running.");
- Assert(sizeof(off_t) == 8);
- Assert(sizeof(size_t) == 4);
- Assert(sizeof(time_t) == 4);
+ TAssert(sizeof(off_t) == 8);
+ TAssert(sizeof(size_t) == 4);
+ TAssert(sizeof(time_t) == 4);
Printer::log(M_STATUS, "Test::Sanity passed.");
}