summaryrefslogtreecommitdiff
path: root/cesar/ce/rx/test/src/test_mme.c
blob: 297c95272ad677f4c54198d5fe8a7818f6735d55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Cesar project {{{
 *
 * Copyright (C) 2009 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    ce/rx/test/src/test_mme.c
 * \brief   Test MME generated by the CE in RX.
 * \ingroup test
 *
 */
#include "common/std.h"

#include "lib/test.h"
#include "lib/blk.h"

int
main (int argc, char **argv)
{
    test_t t;
    test_init (t, argc, argv);

    test_begin (t, "memory")
    {
        test_fail_unless (blk_check_memory ());
    } test_end;

    test_result (t);
    return test_nb_failed (t) == 0 ? 0 : 1;
}