summaryrefslogtreecommitdiff
path: root/cesar/bsu/aclf/test/utest/src/aclf.c
blob: 651669ffb8263fb920d26fca911071ff8ae86d62 (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
33
34
35
36
/* Cesar project {{{
 *
 * Copyright (C) 2010 Spidcom
 *
 * <<<Licence>>>
 *
 * }}} */
/**
 * \file    bsu/aclf/test/utest/src/aclf.c
 * \brief   BSU ACLF unit tests.
 * \ingroup bsu_aclf
 */
#include "common/std.h"
#include "lib/test.h"
#include "bsu/aclf/test/utest/common.h"

void
test_suite_aclf__frequency (test_t t);

void
test_suite_aclf__bpsd_accurate (test_t t);

void
test_suite_aclf__misc (test_t t);

int
main (int argc, char **argv)
{
    test_t test;
    test_init (test, argc, argv);
    test_suite_aclf__frequency (test);
    test_suite_aclf__bpsd_accurate (test);
    test_suite_aclf__misc (test);
    test_result (test);
    return test_nb_failed (test) == 0 ? 0 : 1;
}