Training courses

Kernel and Embedded Linux

Bootlin training courses

Embedded Linux, kernel,
Yocto Project, Buildroot, real-time,
graphics, boot time, debugging...

Bootlin logo

Elixir Cross Referencer

/*	$NetBSD: uglydate.c,v 1.2 2020/05/25 20:47:37 christos Exp $	*/

#include "config.h"
#include "ntp_fp.h"
#include "unity.h"

#include "ntp_stdlib.h"

//#include "libntptest.h"

void setUp(void);
void test_ConstantDateTime(void);


void
setUp(void)
{
	init_lib();

	return;
}


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

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

	TEST_ASSERT_EQUAL_STRING("3485080800.500000 10:159:14:00:00.500",
				 uglydate(&e_time));
}