summaryrefslogtreecommitdiffstats
path: root/contrib/ntp/tests/libntp/prettydate.c
blob: 9a331e828db4aaf360a7cff0be1f022b31a23a26 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "config.h"

#include "ntp_stdlib.h"
#include "ntp_calendar.h"
#include "ntp_fp.h"

#include "unity.h"

void
test_ConstantDate(void) {
	const u_int32 HALF = 2147483648UL;

	l_fp time = {3485080800UL, HALF}; // 2010-06-09 14:00:00.5

	TEST_ASSERT_EQUAL_STRING("cfba1ce0.80000000  Wed, Jun  9 2010 14:00:00.500",
		gmprettydate(&time));
}
OpenPOWER on IntegriCloud