summaryrefslogtreecommitdiff
path: root/tests/test-Sanity.cc
blob: 54fa62635e5a4d4f958bdafe8ab623930f7249da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#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);

    Printer::log(M_STATUS, "Test::Sanity passed.");
}