summaryrefslogtreecommitdiffstats
path: root/test/timer.c
blob: ba03fd51c81fdd11e6a604640f4078adcc88c9d0 (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
37
38
39
40
#include "common/common.h"
#include "osdep/timer.h"
#include "test_utils.h"

#include <time.h>
#include <limits.h>

int main(void)
{
    mp_time_init();

    /* timekeeping */
    {
        int64_t now = mp_time_ns();
        assert_true(now >= 0);

        mp_sleep_ns(MP_TIME_MS_TO_NS(10));

        int64_t now2 = mp_time_ns();
        assert_true(now2 > now);

        mp_sleep_ns(MP_TIME_MS_TO_NS(10));

        double now3 = mp_time_sec();
        assert_true(now3 > MP_TIME_NS_TO_S(now2));
    }

    /* arithmetic */
    {
        const int64_t test = 123456;
        assert_int_equal(mp_time_ns_add(test, 1.0), test + MP_TIME_S_TO_NS(1));
        assert_int_equal(mp_time_ns_add(test, DBL_MAX), INT64_MAX);
        assert_int_equal(mp_time_ns_add(test, -1e13), 1);

        const int64_t test2 = INT64_MAX - MP_TIME_S_TO_NS(20);
        assert_int_equal(mp_time_ns_add(test2, 20.44), INT64_MAX);
    }

    return 0;
}