blob: 6d9e6c6aceb863797857f72b489448a77d401d85 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#include "libntptest.h"
extern "C" {
#include "ntp_fp.h"
};
class uglydateTest : public libntptest {
protected:
static const u_int32 HALF = 2147483648UL;
};
TEST_F(uglydateTest, ConstantDateTime) {
l_fp time = {3485080800UL, HALF}; // 2010-06-09 14:00:00.5
EXPECT_STREQ("3485080800.500000 10:159:14:00:00.500",
uglydate(&time));
}
|