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
|
/* See LICENSE file for copyright and license details. */
#include "common.h"
#ifndef TEST
extern inline void libsimple_timeval2timespec(struct timespec *restrict, const struct timeval *restrict);
#else
#include "test.h"
int
main(void)
{
struct timespec ts;
libsimple_timeval2timespec(&ts, &(struct timeval){0, 0L});
assert(ts.tv_sec == 0);
assert(ts.tv_nsec == 0L);
libsimple_timeval2timespec(&ts, &(struct timeval){0, 1L});
assert(ts.tv_sec == 0);
assert(ts.tv_nsec == 1000L);
libsimple_timeval2timespec(&ts, &(struct timeval){0, 999999L});
assert(ts.tv_sec == 0);
assert(ts.tv_nsec == 999999000L);
libsimple_timeval2timespec(&ts, &(struct timeval){10, 0L});
assert(ts.tv_sec == 10);
assert(ts.tv_nsec == 0L);
libsimple_timeval2timespec(&ts, &(struct timeval){10, 1L});
assert(ts.tv_sec == 10);
assert(ts.tv_nsec == 1000L);
libsimple_timeval2timespec(&ts, &(struct timeval){-10, 0L});
assert(ts.tv_sec == -10);
assert(ts.tv_nsec == 0L);
libsimple_timeval2timespec(&ts, &(struct timeval){-10, 1L});
assert(ts.tv_sec == -10);
assert(ts.tv_nsec == 1000L);
return 0;
}
#endif
|