test-time.c revision cf0fbc49e67b55f8d346fc94de28c90113505297
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
/***
This file is part of systemd.
Copyright 2013 Lennart Poettering
under the terms of the GNU Lesser General Public License as published by
the Free Software Foundation; either version 2.1 of the License, or
(at your option) any later version.
systemd is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with systemd; If not, see <http://www.gnu.org/licenses/>.
***/
#include "strv.h"
#include "time-util.h"
static void test_parse_sec(void) {
usec_t u;
assert_se(u == USEC_INFINITY);
assert_se(u == USEC_INFINITY);
}
static void test_parse_time(void) {
usec_t u;
assert_se(u == 5);
}
static void test_parse_nsec(void) {
nsec_t u;
assert_se(u == 2);
assert_se(u == 0);
assert_se(u == NSEC_INFINITY);
assert_se(u == NSEC_INFINITY);
}
char *r;
char l[FORMAT_TIMESPAN_MAX];
usec_t y;
r = format_timespan(l, sizeof(l), x, accuracy);
assert_se(r);
log_info(" = <%s>", l);
if (accuracy <= 0)
accuracy = 1;
}
}
static void test_timezone_is_valid(void) {
}
static void test_get_timezones(void) {
int r;
char **zone;
r = get_timezones(&zones);
assert_se(r == 0);
}
}
return 0;
}