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

BALAU_STARTUP;

using namespace Balau;

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

    Assert(sizeof(off_t) == 8);

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