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

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;
}