summaryrefslogtreecommitdiff
path: root/tests/test-Sanity.cc
blob: 22120abbe95459e5f0dfa7536db9ac3e75660b00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <Main.h>

using namespace Balau;

void MainTask::Do() {
    Printer::log(M_STATUS, "Test::Sanity running.");

    TAssert(sizeof(off_t) == 8);
    TAssert(sizeof(size_t) == 4);
    TAssert(sizeof(time_t) == 4);

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